An interactive text-based adventure game involving the player exploring different rooms of a tower, interacting with NPCs, collecting items, trading and engaging enemies in combat.
This project was designed to practice and showcase the implementation of Python concepts, including object-oriented programming, data structures and game logic.
- Run the game using Python:
python main.py
- Use text commands to interact with the game:
move <direction>
- Move to another roomsearch
- Search the room for itemspickup <item name>
/pick up <item name>
- Pick up an item in the roominventory
- View items in inventoryinspect
- Inspect NPC in the current room to receive a description of themspeak
- Speak with the NPC in the current roomtrade
- Trade with the NPC in the current roomattack <enemy name>
- Engage in combat with an enemy in the current roomquit
- Exit the game
- 🗺️ Exploration Navigate through different rooms with unique descriptions.
- 🧙♂️ NPC Interactions Engage with friendly and hostile NPCs.
- 🎒 Inventory System Collect and trade items.
- 🗡️ Combat Mechanics Battle enemies and gain rewards.
📂 Text-Adventure-Game
┣ 📄 main.py # Main game loop
┣ 📄 player.py # Player class definitions and mechanics
┣ 📄 room.py # Room definitions
┣ 📄 items.py # Item definitions and inventory system
┣ 📄 npc.py # NPC definitions and interactions
┣ 📄 README.md # Project documentation
- Python 3.x required
- 🏆 Add Loot System Add dropped items from enemies.
- 🔥 Companion System Implement summoning mechanic for imp with acquired item after defeat.
- 🏹 Develop Combat and Health Mechanics Create new enemies, attack types and healing action.
- 🎭 Character Customisation Include ability to choose player name and class mechanics.
- 🏔️ Expand World Add complexity to story, new NPCs and exploration of new locations.
- 👾 Implement Game Interface Output design for better visuality and immersion.
- Expand NPC dialogue and room descriptions to update dynamically based on game progress
- Update inspect, speak and trade methods/commands to specify
<NPC name>
, allowing future addition of multiple NPCs in one room - Add
inspect <item name>
method/command to enable inventory item description output
- ✅ Adjusted search command output to include item description.
- ✅ Updated room / item / NPC descriptions.
- ✅ Added
pick up <item name>
as an alternative command topickup <item name>
.
- ✅ Updated formatting for room / item names and descriptions for better output readability.
- ✅ Implemented combat by updating player attack method to check for sword in inventory, enemy in room and enemy specified in attack command. Added player attack to game loop.
- ✅ Added turn-based Imp attack to occur following player attack.
- ✅ Combat mechanics tested and working.
- ✅ Fixed error when attempting to trade with enemy.
- ✅ Fixed quit command to allow player to continue adventure.
- ✅ Output formatting improvements.
- ✅ Fixed reward items to now be instantiated as objects in the npc.py trade method and removed instances of reward items from main.py. Inventory now functioning with reward objects.
- ✅ Fixed item pickup mechanism.
- ✅ Trade mechanics tested and working.
- ✅ Changed room description to print only on movement between rooms and not after every action.
- Initial release with 3 explorable rooms and NPC speak interaction.