Python dungeon crawler

https://replit.com/@Banesr18/A-python-dungeon-crawler?v=1
This is my game, could I get some feedback for it?

2 Likes

It looks awesome! Maybe just do some reformatting/make the code look nicer? I need to do this on my repls as well, but I never actually have time to do it lol.

2 Likes

Might want to use some objects/classes. Other than that, format your code like @JayAySeaOhBee14 said. (pip install black, black main.py)

They said it all.
Clean the code (including simplifying some parts especially the prints).
Use functions to avoid repeating the same code to print different strings.
Try classes and use this to do more rooms.