From 72848d685cc1ddc71a780490876fafe1f5224a7b Mon Sep 17 00:00:00 2001
From: Callum Richardson <richardsonc7@cardiff.ac.uk>
Date: Tue, 25 Oct 2022 19:23:28 +0000
Subject: [PATCH] Update map.py

---
 Group_game/map.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Group_game/map.py b/Group_game/map.py
index 741d358..0c7efdd 100644
--- a/Group_game/map.py
+++ b/Group_game/map.py
@@ -94,7 +94,7 @@ location_storage = {
 location_boileroom = {
     "name": "Boiler Room",
     
-    "description": "(description needed)",
+    "description": "The boiler looks battered and rusty. There is a hole in the bottom and the valve connection seems loose.",
 
     "exits": {"north": "entrance"},
 
@@ -104,19 +104,19 @@ location_boileroom = {
 }
 desk = {
     "name": "desk",
-    "description": "(description needed)",
+    "description": "the desk is similar to the one in the other room, there are many drawers that could hold important items. Sure enough in one of the drawers there is a lock box that has a password. To unlock you must guess the word.",
     "exits": {"north-west": "entrance"},
     "items": []
 }
 trap_door = {
     "name": "trap door",
-    "description": "(description needed)",
+    "description": "The trap door is locked! There is an electrocated lock, you could use your key again but there is no guarantee it would work and there is no power in this lock. ",
     "exits": {"west": "entrance"},
     "items": []
 }
 closet = {
     "name": "closet",
-    "description": "(description needed)",
+    "description": "You are amazed that the door is now mysteriously open, wondering how it happened you inspect it further. The closet is wooden with dusty shelves and old literary texts. There is a key card here as well.",
     "exits": {},
     "items": []
 }
-- 
GitLab