Features
-
Create Rooms/Locations
forest = Room("Forest", "A dense forest with large trees.")
-
Connect the Rooms to Allow Travel
forest.connect("east", lake, "west", cave)
-
Create Items
sword = Item("sword", "A rusty old sword lies on the ground.")
-
Add Items to Rooms
forest.items.append(sword)
Usage/Commands in 0.1
help
- Prints full list of commands in game.py file.
go east
- Example of travelling.
look
- Looks at current location player is in.
take sword
- Takes an item if it is in scene.
inventory
- Displays inventory.