An open API service indexing awesome lists of open source software.

https://github.com/katerberg/ric-rac-rogue

7 Day Roguelike based on Tic Tac Toe
https://github.com/katerberg/ric-rac-rogue

Last synced: 2 months ago
JSON representation

7 Day Roguelike based on Tic Tac Toe

Awesome Lists containing this project

README

        

# Ric-Rac-Rogue

Ric-Rac-Rogue is a take on the classic two-player game played on a 3x3 grid. The objective is to be the first player to form a line of three of your symbols (X or O) horizontally, vertically, or diagonally.

In this game, nearly all of the rules will change as you proceed through the levels. You may not be the starting player, you may need more or fewer than 3 in a row to win. The board itself may become blocked to your plays.

You will need to use your array of abilities to allow you to defeat your opponent, which will grant you additional power-ups and the energy that is sorely needed to use them.

## Developing

This project is completed since it was done as part of the 7 Day Roguelike and will only get updates for security patches.

### Deploying

The code is deployed via Github Actions automatically on merging to main

### Building

Building a packaged build uses the following:

```sh
nvm use
npm run build
```

Running locally uses the following:

```sh
nvm use
npm start
```