Skip to content
Snippets Groups Projects
Commit f0ca7522 authored by Adriel Nuqui's avatar Adriel Nuqui
Browse files

Added Descriptions

parent 3d382d3d
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,10 @@ from items import *
location_centre = {
"name": "Centre of the room",
"description": "(description for centre spawn needed)",
"description": """Find a way to escape the room! To the SOUTH there is a Fireplace.
from the WEST there is a Bookshelf. From NORTH of the room there is a locked door with a keypad.
You also see an office desk NORTH-EAST. There is a mysterious dark corner SOUTH-EAST of the room.
Good luck you have 20 minutes!""",
"exits": {"south": "fireplace", "west": "bookshelf", "north": "door", "north-east": "desk", "south-east": "dark corner"},
......@@ -13,7 +16,7 @@ location_centre = {
location_Fireplace = {
"name": "The Fireplace",
"description": "(description for fireplace needed)",
"description": "The fireplace is made of brick and has a red brick chimney. The brick is very old and worn, but still strong enough to support the weight of a person. ",
"exits": {"north": "centre", "east": "Dark corner"},
......@@ -23,7 +26,7 @@ location_Fireplace = {
location_bookshelf = {
"name": "Bookshelf",
"description": "(description for bookshelf needed)",
"description": "The bookshelf is full of old books and they are all very dusty. You see a book standing out which appears to be a diary",
"exits": {"north-east": "door", "east": "centre"},
......@@ -33,7 +36,7 @@ location_bookshelf = {
Location_desk = {
"name": "The office desk",
"description": "(description for desk needed)",
"description": "I see a desk with what looks to be a safe underneath it. I open the drawer, and sure enough, there is a small safe.",
"exits": {"west": "door", "south- west": "centre", "west" : "dark corner"},
......@@ -43,7 +46,7 @@ Location_desk = {
location_dark_corner = {
"name": "a dark corner of the room",
"description": "(description for dark corner needed)",
"description": "The dark corner is filled with dust, cobwebs and old papers. There are also some old computers that no one uses anymore, probably the remnants of old computer science students",
"exits": {"west": "fireplace", "north": "desk", "north-west": "centre"},
......@@ -52,7 +55,7 @@ location_dark_corner = {
location_door = {
"name": "Escape door",
"description": "(description for escape door needed) ",
"description": "The door is locked, the keypad has a red light that’s blinking. You press the buttons randomly only to no avail. You press more random buttons and the red light blinks faster. :( ",
"exits": {"south": "centre"},
......
print("Hello")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment