-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA2_Rooms.json
127 lines (125 loc) · 2.92 KB
/
A2_Rooms.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"room": [{
"id": 1,
"start": true,
"height": 10,
"width": 20,
"doors": [{
"dir": "S",
"con_room": 2,
"wall_pos": 1
},
{
"dir": "W",
"con_room": 3,
"wall_pos": 7
},
{
"dir": "N",
"con_room": 2,
"wall_pos": 4
}],
"loot": [{
"id": 1,
"x": 3,
"y": 3
},
{
"id": 4,
"x": 8,
"y": 8
}
]
},
{
"id": 2,
"start": false,
"height": 10,
"width": 20,
"doors": [{
"dir": "N",
"con_room": 1,
"wall_pos": 3
},
{
"dir": "S",
"con_room": 1,
"wall_pos": 5
}
],
"loot": [
{
"id": 4,
"x": 7,
"y": 8
},
{
"id": 35,
"x": 3,
"y": 6
}
]
},
{
"id": 3,
"start": false,
"height": 20,
"width": 10,
"doors": [{
"dir": "E",
"con_room": 1,
"wall_pos": 3
}
],
"loot": [
{
"id": 2,
"x": 7,
"y": 8
},
{
"id": 3,
"x": 3,
"y": 6
}
]
}
],
"items": [{
"id": 1,
"name": "Health Potion",
"type": "potion",
"description":"you feel better"
},
{
"id": 2,
"name": "Scroll of Fireball",
"type": "scroll",
"description":"A 20 foot ball of flame hurtles away from you"
},
{
"id": 3,
"name": "Iron Helmet",
"type": "armour",
"description": "you have a large helmet on your head"
},
{
"id": 4,
"name": "Mango",
"type": "food",
"description": "my that was a yummy mango!"
},
{
"id": 35,
"name": "6 gold",
"type": "gold",
"description": "you found 6 gold pieces"
},
{
"id": 10,
"name": "10 gold",
"type": "gold",
"description": "you found 10 gold pieces"
}
]
}