move other items to items file

This commit is contained in:
mollusk 2020-08-31 21:47:35 -07:00
parent ad58ddf721
commit 285c4e5fdc

View File

@ -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]
)