Skip to content
Snippets Groups Projects
Commit b1886ac0 authored by Morgan Diment's avatar Morgan Diment
Browse files

few updates to game and map

parent 5922b1f0
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ from gameparser import *
from datetime import datetime
from items import *
from level_1 import *
from level_2 import *
start_time = ""
global current_room
global current_level
......
......@@ -72,6 +72,33 @@ location_entrance = {
"items": []
}
location_winecellar = {
"name": "Wine Cellar",
"description": "(description needed)",
"exits": {},
"items": {}
}
location_storage = {
"name": "Storage Room",
"description": "(description needed)",
"exits": {},
"items": {}
}
location_boileroom = {
"name": "Boiler Room",
"description": "(description needed)",
"exits": {},
"items": {}
}
level1 = {
"fireplace": location_Fireplace,
......@@ -82,5 +109,11 @@ level1 = {
"door": location_door
}
level2 = {"entrance": location_entrance}
level2 = {
"entrance": location_entrance,
"wine cellar": location_winecellar,
"storage room": location_storage,
"boiler room": location_boileroom
}
levels = {"level 1": level1, "level 2": level2}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment