-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathworld.json
More file actions
90 lines (90 loc) · 3.8 KB
/
world.json
File metadata and controls
90 lines (90 loc) · 3.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"hall": {
"north": "library",
"south": "kitchen",
"east": "dining room",
"item": "skeleton key",
"desc": "You're standing in a long dimly lit hallway. Doors are to the north and east. An open doorway leads into a dark room to the south."
},
"kitchen": {
"north": "hall",
"item": "monster",
"desc": "You are standing in an old dusty kitchen lit by a spell book lying on the floor. A door is to the north."
},
"dining room": {
"west": "hall",
"south": "garden",
"item": "potion",
"desc": "You are standing in a dining room. A long wooden table is here surrounded by chairs. Doors lie to the west and south."
},
"garden": {
"north": "dining room",
"item": "gate",
"desc": "You are standing in a well kept garden. Clearly, someone spends time working here. The garden is surrounded by smooth walls that appear impossible to climb. A door leads back into the house to the north. To the south, a gate leads into a mysterious maze."
},
"library": {
"south": "hall",
"item": "spell book",
"desc": "You are standing in a library. Cobwebs clutter the corners of the room. The windows in this room are boarded up, although, there is a fire in the hearth. Clearly, someone has been here recently."
},
"maze entry": {
"north": "garden",
"east": "maze path 1",
"desc": "You stand at the entrance to a twisting maze. The gate to the north leads back to the garden. Paths lead deeper into the maze."
},
"maze path 1": {
"west": "maze entry",
"east": "maze path 2",
"south": "maze dead end 1",
"desc": "A narrow path with high hedges. The way west leads out, east goes deeper, and south is a shadowy dead end."
},
"maze path 2": {
"west": "maze path 1",
"east": "maze path 3",
"item": "sword",
"desc": "A glint catches your eye: a sword lies here. Paths lead west and east."
},
"maze path 3": {
"west": "maze path 2",
"south": "maze path 4",
"desc": "The maze twists south. The way west returns to the sword."
},
"maze path 4": {
"north": "maze path 3",
"east": "maze path 5",
"item": "healing fountain",
"desc": "A small fountain bubbles here, its waters said to heal. Paths lead north and east."
},
"maze path 5": {
"west": "maze path 4",
"south": "maze dead end 2",
"east": "maze path 6",
"desc": "The path splits: east goes deeper, south is a dead end, west returns to the fountain."
},
"maze path 6": {
"west": "maze path 5",
"south": "maze path 7",
"desc": "The path twists and turns, with high hedges blocking your view. East and south are possible, west returns to the split."
},
"maze path 7": {
"north": "maze path 6",
"east": "maze dead end 3",
"south": "maze center",
"desc": "The path narrows. East is a dead end, south leads to the heart of the maze."
},
"maze dead end 2": {
"north": "maze path 5",
"item": "marbles",
"desc": "A dead end. The only way out is north. A pouch of marbles lies forgotten here."
},
"maze center": {
"north": "maze path 7",
"south": "cave entrance",
"item": "minotaur",
"desc": "You have reached the center of the maze. A fearsome minotaur stands guard here. To the south, a narrow passage leads into a cave entrance. It looks just wide enough for you to wiggle through, but the Minotaur is far too large."
},
"cave entrance": {
"north": "maze center",
"desc": "A narrow cave entrance, barely wide enough for you to squeeze through. The Minotaur would never fit. Darkness stretches ahead."
}
}