-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmymap.json
47 lines (30 loc) · 1.19 KB
/
mymap.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[
{"name": "A white room", "desc": "You are in a simple room with white walls. Some of the Exits are locked",
"exits": { "north": 3, "northeast": 2, "east": 1, "west": 4 },
"locked": { "north" : "sword" },
"items" : ["wand"]
}
,
{"name": "A yellow room", "desc": "You are in a simple room with Yellow walls. Some of the Exits are locked",
"exits": { "north": 2, "west": 0 },
"locked" : { "north" : "wand" }
}
,
{"name": "A Black room", "desc": "You are in a simple room with pitch Black walls. Some of the Exits are locked",
"exits": { "south": 1, "west": 3, "southwest": 0 },
"locked" : { "west" : "bow and arrows" },
"items" : ["sword", "key"]
}
,
{"name": "A Green room", "desc": "You are in a room with Green walls. It looks like a Treasure Room.All of the Exits are locked",
"exits": { "south": 4, "east": 2, "southeast": 0 },
"locked" : { "east" : "bow and arrows","southeast": "sword" ,"south": "key" },
"items" : ["Treasure Chest"]
}
,
{"name": "A red room", "desc": "You are in a fancy room, with bright red walls.Some of Exits are locked",
"exits": { "north": 3, "east": 0 },
"items": ["bow and Arrows"],
"locked" : {"north": "key" }
}
]