From f0ca75225923879d680801e2fb12b79c2584895a Mon Sep 17 00:00:00 2001
From: Adriel <NuquiA@cardiff.ac.uk>
Date: Sun, 23 Oct 2022 12:51:01 +0100
Subject: [PATCH] Added Descriptions

---
 Group_game/map.py | 15 +++++++++------
 Hello.py          |  1 -
 2 files changed, 9 insertions(+), 7 deletions(-)
 delete mode 100644 Hello.py

diff --git a/Group_game/map.py b/Group_game/map.py
index 0f119ef..261de5c 100644
--- a/Group_game/map.py
+++ b/Group_game/map.py
@@ -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"},
 
diff --git a/Hello.py b/Hello.py
deleted file mode 100644
index 2f9a147..0000000
--- a/Hello.py
+++ /dev/null
@@ -1 +0,0 @@
-print("Hello")
-- 
GitLab