This is sample implementation of a 'roguelike' game in Python.
Game menu:
Gameplay:
This project is using venv (virtual environment) to manage dependencies.
To install dependencies run:
Linux/MacOS:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Windows:
py -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
To save dependencies (if you want to change them) run:
pip freeze > requirements.txt
To start the game run (be sure to activate venv)):
python main.py
Based on Roguelike Python Tutorial 📁.
All cudos to TStand90 for the great tutorial!
Original code can be found here.
You might want to check Roguelike Development Subreddit.