https://github.com/mateuskreuch/cho
A circular turn-based strategy game inspired by chess
https://github.com/mateuskreuch/cho
chess game turn-based-strategy
Last synced: 2 months ago
JSON representation
A circular turn-based strategy game inspired by chess
- Host: GitHub
- URL: https://github.com/mateuskreuch/cho
- Owner: mateuskreuch
- Created: 2023-02-17T03:27:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-19T00:17:58.000Z (over 3 years ago)
- Last Synced: 2024-10-23T22:15:54.827Z (over 1 year ago)
- Topics: chess, game, turn-based-strategy
- Language: Lua
- Homepage:
- Size: 1.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cho
Cho is a turn-based strategy board game. Its pieces consists of 7 pawns, 2 rooks and 1 queen per player.

## Definitions
- Verticality is defined as going away/in the direction of the center of the board.
- Horizontality is defined as rotating around the center of the board.
- Intersections are tiles with no direct path downwards (towards the center of the board).
## Rules
- Pawns can move one tile vertically and horizontally. They can also move through intersections.
- Rooks can move infinitely vertically and horizontally.
- Queens can move two tiles horizontally and until the center of the board vertically, but can't go upwards (away from the center of the board).
- Rooks that reach the center turn into pawns, and pawns turn into rooks.
- Victory is achieved by eliminating the enemy's queen or getting your queen to the center of the board and staying there for 1 turn.