Skip to content
Snippets Groups Projects

Update game1_template/map.py

Open Jiajing Pan requested to merge c22056813-main-patch-58603 into main
1 file
+ 13
1
Compare changes
  • Side-by-side
  • Inline
+ 13
1
@@ -59,6 +59,17 @@ Queen's Buildings.""",
"exits": {"west": "Parking"}# ADD EXITS HERE!
}
room_shack = {
"name": "Shack",
"description":
"""You are standing in an old shack and a man is sleeping.""",
"exits": {"north": "Bottom"},
"items": []
}
rooms = {
@@ -66,5 +77,6 @@ rooms = {
"Admins": room_admins,
"Tutor": room_tutor,
"Parking": room_parking,
"Office": room_office
"Office": room_office,
"Shack": room_shack
}
Loading