An adventure game made with OOP in Python 3. Playable in command prompt. Includes a template to make your own map.
Make Your own map.
- Make a copy of testgame.py and rename it; this will be your map.
- Use a grid to create a tile-based map. Map tile classes are in world.py
- In your copy of testgame.py, create your tiles and give them coordinates. 3.1. north = y increases 3.2. south = y decreases 3.3. east = x increases 3.4. west = x decreases
- Enter the tile coordinates in the game_map OrderedDict.
- If you want to create new weapon and armor types, you can that here too. Use the items module.
- Import your map in game.py and player.py