forked from csfeeser/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorey.py
More file actions
56 lines (56 loc) · 1.11 KB
/
corey.py
File metadata and controls
56 lines (56 loc) · 1.11 KB
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
48
49
50
51
52
53
54
55
56
{
"a1": {
"ZONENAME": "At the Jukebox",
"DESCRIPTION": "Your at the classic jukebox filled with some of the most classic hits",
"EXAMINATION": "You see a coin slot. it reads \"10 cents per song\" you see a forward and back button to select song",
"SOLVED": "False",
"UP": ["up", "north"],
"DOWN": "b1",
"LEFT": ["left", "west"],
"RIGHT": "a2"
},
"a2": {
"ZONENAME": "At the Booth",
"DESCRIPTION": "description",
"EXAMINATION": "examine",
"SOLVED": "False",
"UP": ["up", "north"],
"DOWN": ["down", "south"],
"LEFT": ["left", "west"],
"RIGHT": ["right", "east"]
},
"b1": {
"ZONENAME ": "Inside the Diner ",
"DESCRIPTION ": "This is the Jukebox diner",
"EXAMINATION ": "examine ",
"SOLVED": "False ",
"UP ": [
"up ",
"north "
],
"DOWN ": [
"down ",
"south "
],
"LEFT ": [
"left ",
"west "
],
"RIGHT ": [
"right ",
"east "
]
},
"b2 ": {
"ZONENAME ": "Outside the Jukebox Diner ",
"DESCRIPTION ": "description ",
"EXAMINATION ": "examine ",
"SOLVED ": "False",
"UP ": "a2 ",
"LEFT ": "b1 ",
"RIGHT ": [
"right ",
"east "
]
}
}