The objective of the game is straightforward : to avoid capture by the Pokéballs.
There are multiple avenues for initiating the game, including the executable file or the Python script. The most simpliciter approach is to launch the executable directly.
- Clone the repo
git clone https://github.com/Neaje/Pokemon-Game && cd Pokemon-game
- Install the python depencies
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Run the python script and play
python3 pokemon.py
Additionally, the executable can be constructed manually via the following command:
pyinstaller --onefile --windowed --add-data "assets/images:assets/images" pokemon.py
# The executable is now in the dist directory
dist
└── pokemon