Kayne Ruse f831019148 Items can be picked up and stored in the inventory
When more than one item can be picked up, and options window is shown.

Stubs for "using" an item are in place.
2025-03-29 16:30:44 +11:00
2025-03-29 11:12:40 +11:00
2025-03-13 19:50:34 +11:00
2025-03-29 11:12:40 +11:00
2025-03-13 19:50:34 +11:00

Stepwise

Dimensions and Genres

Each time you start a run, a genre is chosen from a predefined list of Dimensions. Which dimension is chosen will dictate the rules for that run, altering the map's generation and overall goals for that save file. Some talking monsters may change their dialog, or some monsters may only spawn in some dimensions but not others.

Some recurring elements will exist in all dimensions to provide some stability, but will often be warped to fit - for example, if the "fantasy" dimension has Cid, the dwarven shopkeeper, the "scifi" dimension has C.I.D., the Customer Inventory Droid.

Here's a few potential options, which will absolutely change over time:

  • Sword and Sorcery (LotR, D&D)
  • GitS/Neuromancer/Digitized Minds
  • Steampunk/Clockpunk/Crystalpunk (deeper areas have older tech)
  • Post-Post-Apocalypse (Nausicaa)
  • Shakespeare, A Tragedy
  • Fairy Tales and Fables (Brothers Grimm)
  • Secret Agent Espionage
  • Mythic Odyssey
  • Dreamlands/Cthulhu Horror
  • Stargates/Sliders
  • Isekai Protag Syndrome
  • Gunslingers (Wild West)

Notes, Concepts and Ideas

  • Color-based effects or biomes that only have an impact when in the FOV?
  • The "obscurity" is a random value set at the beginning of a run, and lost upon death. The game will have various secrets, some of which are only accessible via certain obscurity values.
  • A banana taped to a wall?
  • A note taped to a wall that says "I. O. U. 1 Banana"
  • Could also have an art gallery room

https://rogueliketutorials.com/

https://python-tcod.readthedocs.io/en/latest/

Setup and Notes

#make the virtual environment
python3 -m venv venv

#useful pre-commit hook
lint_results=$(echo "$(grep -Pro '[\t]+$' */*.py)")
lint_errors=$(echo "$lint_results" | wc -w)
if [ $lint_errors -gt 0 ]; then
	echo "pre-commit lint errors found: $lint_errors"
	echo "$lint_results"
fi
exit $lint_errors

heapq is a thing for the speed sorting

Font: https://2bitcrook.itch.io/44-game-boy-fonts

Description
No description provided
Readme 252 KiB
Languages
Python 100%