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
- Host: GitHub
- URL: https://github.com/katerberg/ric-rac-rogue
- Owner: katerberg
- Created: 2024-03-04T14:51:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T16:43:24.000Z (7 months ago)
- Last Synced: 2025-01-18T17:33:15.274Z (4 months ago)
- Language: TypeScript
- Homepage: https://katerberg.github.io/ric-rac-rogue/
- Size: 14.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```