Splendor board game in command line interface.
- Works with Python 3.7+
- Termcolor and Colorama external libraries are used for command line coloring
- Download/clone this repository
- Install dependencies with
python -m pip install -r requirements.txt
- Run __main__.py with Python:
python __main__.py
- This starts default game with 1 human player vs 1 AI player
- For different command line options, see
python __main__.py --help
- You can play the game online without any download by clicking Run in Repl.it
This game is based in Splendor. You can learn the actual rules of the game from here.
The differences with original game are:
- Reserved cards aren't hidden.
- You can't choose a noble when there is more than one eligible noble deserved, it's randomly given to you.
- In addition to the 15 point game option, there is also a 21 point game option.
Inside this command line game, you can perform 6 different actions:
- take gems, reserve card, purchase card, set AI sleep setting, quit, see help.
Whenever a prompt asks you to type an input, type one of these actions.
take XXX: Take a gem
- "X" are chars: 'r','g','b','w','k' (red, green, blue, white, black) which represents colors of gems
- You can enter from 0 to 3 characters after "t"
- Typing only "take" means 'pass'
- EXAMPLE INPUT: "take rgb" means take red, green and blue
- EXAMPLE INPUT: "take ww" means take two white gems
- EXAMPLE INPUT: "take b" means take one blue gem
reserve XY: Reserve a card
- "X" is digit from 1 to 3
- "Y" is digit from 0 to 3
- EXAMPLE INPUT: "reserve 12" means from 1st level, reserve 2nd card
- EXAMPLE INPUT: "reserve 20" means from 2nd level, do a blind reserve
- You MUST enter TWO digits after "r"
purchase XY: Purchase a card "X" is digit from 0 to 3 "Y" is digit from 1 to 3 If X is 0, it means you purchase from your reserved cards, otherwise it refers to card levels EXAMPLE INPUT: "purchase 32" means from 3rd level, purchase 2nd card EXAMPLE INPUT: "purchase 01" means from your reserved cards, purchase 1st card
- You MUST enter TWO numbers after "p"
sleep X: Set AI sleep time in range of [0.0, 0.5] seconds. Default is 0.2 seconds. Without any argument, prints the current setting. Although setting it to 0 seconds not recommended, in order to follow the game, you can use this option for AI vs AI fights.
quit: Quit game
help: Show help for each command
- A basic one-move-foreseeing AI, which is open for improving.
- Elo scoring system, which you may be familiar from chess, is used for players and account data is stored in Accounts folder.