This repo implements yiotro's antiyoy in python.
from yoytools.game import Game
from yoytools.game.world import RandomMap, view_map
game = Game([], RandomMap(10, 10))
view_map(game.map)
This will create a game and launch the map viewer.
The project is being worked on and is focused on recreating antiyoy's core.
-
Game
- Adding players to the game
- Starting the game
- Turns (partially - implemented base functions for handling turns)
-
World
- Map
- Random map generation
- Hexagons
- Units (partially - implemented basic classes, but not functionality)
-
Emulator
- Basic map viewer
- Gameplay