diff --git a/src/geedren_mansionpkg/items.nim b/src/geedren_mansionpkg/items.nim index b3f018f..83deb56 100644 --- a/src/geedren_mansionpkg/items.nim +++ b/src/geedren_mansionpkg/items.nim @@ -6,4 +6,23 @@ var phone* = Item( name: "Phone", description: "Communication device" + ) + + + foyer* = Room( + name: "Foyer", + description: "Entrance Hall of the Geedren Mansion", + text: "", + secrets: 2 + ) + + cathDoorKey* = Item( + name: "Cathedral Door Key", + description: "This key opens the door to the cathedral" + ) + + desk* = Container( + name: "Desk", + description: "A small wooden desk", + contents: @[cathDoorKey] ) \ No newline at end of file