pgDora56 / NimmtSimulator

Game simulator for "6 Nimmt!"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NimmtSimulator

Files

  • main.py : executable file
  • player.py : parent class & examples
  • simple.py : template class(player)

Usage

  1. Make your own intelligence by editing simple.py.
  2. Set using players by editing main.py.
# main.py:line 137-145
if __name__ == "__main__":
    players = [ # Set using players list
                BiggerPlayer(),
                BiggerPlayer(),
                SmallerPlayer(),
                SmallerPlayer(),
            ]
    board = Board(players) # Play!!
  1. Run the following command:
python main.py

LICENSE

MIT

About

Game simulator for "6 Nimmt!"

License:MIT License


Languages

Language:Python 100.0%