Skip to content

DungeonText 0.1.0

Latest
Compare
Choose a tag to compare
@thepersonwithears thepersonwithears released this 03 Nov 21:19
· 4 commits to main since this release
59fe276

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.