├── .gitignore ├── LICENSE ├── README.md ├── armory.py ├── character.py ├── encounters.py ├── enemy_hero_creator.py ├── fight.py ├── game.py ├── game_items.py ├── generator.py ├── inventory.py ├── main.py ├── map_creator.py ├── save.py ├── setup.py ├── store.py ├── story.py └── weapon.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/README.md -------------------------------------------------------------------------------- /armory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/armory.py -------------------------------------------------------------------------------- /character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/character.py -------------------------------------------------------------------------------- /encounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/encounters.py -------------------------------------------------------------------------------- /enemy_hero_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/enemy_hero_creator.py -------------------------------------------------------------------------------- /fight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/fight.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/game.py -------------------------------------------------------------------------------- /game_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/game_items.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/generator.py -------------------------------------------------------------------------------- /inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/inventory.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/main.py -------------------------------------------------------------------------------- /map_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/map_creator.py -------------------------------------------------------------------------------- /save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/save.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/setup.py -------------------------------------------------------------------------------- /store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/store.py -------------------------------------------------------------------------------- /story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/story.py -------------------------------------------------------------------------------- /weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyler-Laudenslager/Mysteries-of-Galoo/HEAD/weapon.py --------------------------------------------------------------------------------