Skip to content

sswietoniowski/learning-python-roguelike-game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Python - Roguelike Game

This is sample implementation of a 'roguelike' game in Python.

Game menu:

Main menu)]

Gameplay:

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

Learning Resources

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.

About

Sample implementation of a 'roguelike' game in Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages