summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--data/connections.txtpb20
-rw-r--r--data/maps/the_hive/connections.txtpb10
-rw-r--r--data/maps/the_hive/doors.txtpb55
-rw-r--r--data/maps/the_hive/rooms/Main Area.txtpb292
-rw-r--r--data/maps/the_hive/rooms/Mastery Room.txtpb6
-rw-r--r--data/maps/the_hive/rooms/Room 8.txtpb30
6 files changed, 412 insertions, 1 deletions
diff --git a/data/connections.txtpb b/data/connections.txtpb index caebc9c..fe5086e 100644 --- a/data/connections.txtpb +++ b/data/connections.txtpb
@@ -28,7 +28,6 @@
28# the_great/West Side/IMPRESSIVE 28# the_great/West Side/IMPRESSIVE
29# the_great/West Side/CC 29# the_great/West Side/CC
30# the_great/Jubilant Entrance/JUBILANT 30# the_great/Jubilant Entrance/JUBILANT
31# the_great/Hive Entrance/HIVE
32# the_great/Back Area/UNKEMPT 31# the_great/Back Area/UNKEMPT
33# the_great/Back Area/THREEDOORS 32# the_great/Back Area/THREEDOORS
34# the_great/Back Area/TOWER (keep in mind the door only blocks one direction of this) 33# the_great/Back Area/TOWER (keep in mind the door only blocks one direction of this)
@@ -37,6 +36,9 @@
37# the_great/North Landscape/INVISIBLE (keep in mind the door only blocks one direction of this) 36# the_great/North Landscape/INVISIBLE (keep in mind the door only blocks one direction of this)
38# the_hinterlands/Main Area/LEFT 37# the_hinterlands/Main Area/LEFT
39# the_hinterlands/Main Area/RIGHT 38# the_hinterlands/Main Area/RIGHT
39# the_hive/Main Area/DAED1
40# the_hive/Main Area/DAED2
41# the_hive/Main Area/DAED3
40connections { 42connections {
41 from { 43 from {
42 panel { 44 panel {
@@ -538,3 +540,19 @@ connections {
538 } 540 }
539 oneway: true 541 oneway: true
540} 542}
543connections {
544 from {
545 port {
546 map: "the_hive"
547 room: "Main Area"
548 name: "GREAT"
549 }
550 }
551 to {
552 port {
553 map: "the_great"
554 room: "Hive Entrance"
555 name: "HIVE"
556 }
557 }
558}
diff --git a/data/maps/the_hive/connections.txtpb b/data/maps/the_hive/connections.txtpb new file mode 100644 index 0000000..9a51da1 --- /dev/null +++ b/data/maps/the_hive/connections.txtpb
@@ -0,0 +1,10 @@
1connections {
2 from_room: "Main Area"
3 to_room: "Room 8"
4 door { name: "Room 8 Door" }
5}
6connections {
7 from_room: "Main Area"
8 to_room: "Mastery Room"
9 door { name: "Mastery Door" }
10}
diff --git a/data/maps/the_hive/doors.txtpb b/data/maps/the_hive/doors.txtpb new file mode 100644 index 0000000..4d86e13 --- /dev/null +++ b/data/maps/the_hive/doors.txtpb
@@ -0,0 +1,55 @@
1doors {
2 name: "Room 8 Door"
3 type: LOCATION_ONLY
4 panels { room: "Main Area" name: "STEM" }
5 panels { room: "Main Area" name: "PETAL" }
6 panels { room: "Main Area" name: "SOIL" }
7 panels { room: "Main Area" name: "PLANTS" }
8 location_room: "Main Area"
9}
10doors {
11 name: "Mastery Door"
12 type: EVENT
13 panels { room: "Main Area" name: "ASP" }
14 panels { room: "Main Area" name: "HORN" }
15 panels { room: "Main Area" name: "NET" }
16 panels { room: "Main Area" name: "WAS" }
17 panels { room: "Main Area" name: "HONE" }
18 panels { room: "Main Area" name: "MOO" }
19 panels { room: "Main Area" name: "QUIT" }
20 panels { room: "Main Area" name: "EYE" }
21 panels { room: "Main Area" name: "YELL" }
22 panels { room: "Main Area" name: "AT" }
23 panels { room: "Main Area" name: "LOW (1)" }
24 panels { room: "Main Area" name: "JACK" }
25 panels { room: "Main Area" name: "LOW (2)" }
26 panels { room: "Main Area" name: "OWE" }
27 panels { room: "Main Area" name: "DEN" }
28 panels { room: "Main Area" name: "AD" }
29 panels { room: "Main Area" name: "SITE" }
30 panels { room: "Main Area" name: "ATE" }
31 panels { room: "Main Area" name: "CURE" }
32 panels { room: "Main Area" name: "PAR" }
33 panels { room: "Main Area" name: "EEL" }
34 panels { room: "Main Area" name: "SIR" }
35 panels { room: "Main Area" name: "PER" }
36 panels { room: "Main Area" name: "BEE" }
37 panels { room: "Main Area" name: "STEM" }
38 panels { room: "Main Area" name: "PETAL" }
39 panels { room: "Main Area" name: "SOIL" }
40 panels { room: "Main Area" name: "PLANTS" }
41 panels { room: "Room 8" name: "BUMBLE" }
42 panels { room: "Room 8" name: "CARPENTER" }
43 panels { room: "Room 8" name: "CLOVER" }
44 panels { room: "Room 8" name: "WILDFLOWER" }
45 panels { room: "Main Area" name: "COWARDLY" }
46 panels { room: "Main Area" name: "COAT" }
47 panels { room: "Main Area" name: "FLAXEN" }
48 panels { room: "Main Area" name: "CASE" }
49 panels { room: "Main Area" name: "LEGS" }
50 panels { room: "Main Area" name: "EYES" }
51 panels { room: "Main Area" name: "WINGS" }
52 panels { room: "Main Area" name: "ANTENNA" }
53 panels { room: "Main Area" name: "COFFEE" }
54 panels { room: "Main Area" name: "BEEF" }
55}
diff --git a/data/maps/the_hive/rooms/Main Area.txtpb b/data/maps/the_hive/rooms/Main Area.txtpb new file mode 100644 index 0000000..1aaabe8 --- /dev/null +++ b/data/maps/the_hive/rooms/Main Area.txtpb
@@ -0,0 +1,292 @@
1name: "Main Area"
2display_name: "Hive"
3panels {
4 name: "ASP"
5 path: "Panels/Room 1/panel_1"
6 clue: "asp"
7 answer: "wasp"
8 symbols: "question"
9}
10panels {
11 name: "HORN"
12 path: "Panels/Room 1/panel_2"
13 clue: "horn"
14 answer: "hornet"
15 symbols: "question"
16}
17panels {
18 name: "NET"
19 path: "Panels/Room 1/panel_3"
20 clue: "net"
21 answer: "hornet"
22 symbols: "question"
23}
24panels {
25 name: "WAS"
26 path: "Panels/Room 1/panel_4"
27 clue: "was"
28 answer: "wasp"
29 symbols: "question"
30}
31panels {
32 name: "HONE"
33 path: "Panels/Room 2/panel_1"
34 clue: "hone"
35 answer: "honeybee"
36 symbols: "question"
37}
38panels {
39 name: "MOO"
40 path: "Panels/Room 2/panel_2"
41 clue: "moo"
42 answer: "mosquito"
43 symbols: "question"
44}
45panels {
46 name: "QUIT"
47 path: "Panels/Room 2/panel_3"
48 clue: "quit"
49 answer: "mosquito"
50 symbols: "question"
51}
52panels {
53 name: "EYE"
54 path: "Panels/Room 2/panel_4"
55 clue: "eye"
56 answer: "honeybee"
57 symbols: "question"
58}
59panels {
60 name: "YELL"
61 path: "Panels/Room 3/panel_1"
62 clue: "yell"
63 answer: "yellow"
64 symbols: "question"
65}
66panels {
67 name: "AT"
68 path: "Panels/Room 3/panel_2"
69 clue: "at"
70 answer: "jacket"
71 symbols: "question"
72}
73panels {
74 name: "LOW"
75 path: "Panels/Room 3/panel_3"
76 clue: "low"
77 answer: "yellow"
78 symbols: "question"
79}
80panels {
81 name: "JACK"
82 path: "Panels/Room 3/panel_4"
83 clue: "jack"
84 answer: "jacket"
85 symbols: "question"
86}
87panels {
88 name: "LOW"
89 path: "Panels/Room 4/panel_1"
90 clue: "low"
91 answer: "flower"
92 symbols: "question"
93}
94panels {
95 name: "OWE"
96 path: "Panels/Room 4/panel_2"
97 clue: "owe"
98 answer: "flower"
99 symbols: "question"
100}
101panels {
102 name: "DEN"
103 path: "Panels/Room 4/panel_3"
104 clue: "den"
105 answer: "garden"
106 symbols: "question"
107}
108panels {
109 name: "AD"
110 path: "Panels/Room 4/panel_4"
111 clue: "ad"
112 answer: "garden"
113 symbols: "question"
114}
115panels {
116 name: "SITE"
117 path: "Panels/Room 5/panel_1"
118 clue: "site"
119 answer: "parasite"
120 symbols: "question"
121}
122panels {
123 name: "ATE"
124 path: "Panels/Room 5/panel_2"
125 clue: "ate"
126 answer: "creature"
127 symbols: "question"
128}
129panels {
130 name: "CURE"
131 path: "Panels/Room 5/panel_3"
132 clue: "cure"
133 answer: "creature"
134 symbols: "question"
135}
136panels {
137 name: "PAR"
138 path: "Panels/Room 5/panel_4"
139 clue: "par"
140 answer: "parasite"
141 symbols: "question"
142}
143panels {
144 name: "EEL"
145 path: "Panels/Room 6/panel_1"
146 clue: "eel"
147 answer: "beetle"
148 symbols: "question"
149}
150panels {
151 name: "SIR"
152 path: "Panels/Room 6/panel_2"
153 clue: "sir"
154 answer: "spider"
155 symbols: "question"
156}
157panels {
158 name: "PER"
159 path: "Panels/Room 6/panel_3"
160 clue: "per"
161 answer: "spider"
162 symbols: "question"
163}
164panels {
165 name: "BEE"
166 path: "Panels/Room 6/panel_4"
167 clue: "bee"
168 answer: "beetle"
169 symbols: "question"
170}
171panels {
172 name: "STEM"
173 path: "Panels/Room 7/panel_1"
174 clue: "stem"
175 answer: "flower"
176 symbols: "question"
177}
178panels {
179 name: "PETAL"
180 path: "Panels/Room 7/panel_2"
181 clue: "petal"
182 answer: "flower"
183 symbols: "question"
184}
185panels {
186 name: "SOIL"
187 path: "Panels/Room 7/panel_3"
188 clue: "soil"
189 answer: "garden"
190 symbols: "question"
191}
192panels {
193 name: "PLANTS"
194 path: "Panels/Room 7/panel_4"
195 clue: "plants"
196 answer: "garden"
197 symbols: "question"
198}
199panels {
200 name: "COWARDLY"
201 path: "Panels/Room 9/panel_1"
202 clue: "cowardly"
203 answer: "yellow"
204 symbols: "question"
205}
206panels {
207 name: "COAT"
208 path: "Panels/Room 9/panel_2"
209 clue: "coat"
210 answer: "jacket"
211 symbols: "question"
212}
213panels {
214 name: "FLAXEN"
215 path: "Panels/Room 9/panel_3"
216 clue: "flaxen"
217 answer: "yellow"
218 symbols: "question"
219}
220panels {
221 name: "CASE"
222 path: "Panels/Room 9/panel_4"
223 clue: "case"
224 answer: "jacket"
225 symbols: "question"
226}
227panels {
228 name: "LEGS"
229 path: "Panels/Room 10/panel_1"
230 clue: "legs"
231 answer: "spider"
232 symbols: "question"
233}
234panels {
235 name: "EYES"
236 path: "Panels/Room 10/panel_2"
237 clue: "eyes"
238 answer: "spider"
239 symbols: "question"
240}
241panels {
242 name: "WINGS"
243 path: "Panels/Room 10/panel_3"
244 clue: "wings"
245 answer: "beetle"
246 symbols: "question"
247}
248panels {
249 name: "ANTENNA"
250 path: "Panels/Room 10/panel_4"
251 clue: "antenna"
252 answer: "beetle"
253 symbols: "question"
254}
255panels {
256 name: "COFFEE"
257 path: "Panels/Others/panel_1"
258 clue: "coffee"
259 answer: "tea"
260 symbols: "example"
261}
262panels {
263 name: "BEEF"
264 path: "Panels/Others/panel_2"
265 clue: "beef"
266 answer: "ham"
267 symbols: "example"
268}
269keyholders {
270 name: "B"
271 path: "Components/KeyHolders/keyHolderB"
272}
273ports {
274 name: "DAED1"
275 path: "Components/Warps/worldport"
276 orientation: "west"
277}
278ports {
279 name: "DAED2"
280 path: "Components/Warps/worldport2"
281 orientation: "west"
282}
283ports {
284 name: "DAED3"
285 path: "Components/Warps/worldport3"
286 orientation: "east"
287}
288ports {
289 name: "GREAT"
290 path: "Components/Warps/worldport4"
291 orientation: "west"
292}
diff --git a/data/maps/the_hive/rooms/Mastery Room.txtpb b/data/maps/the_hive/rooms/Mastery Room.txtpb new file mode 100644 index 0000000..1884cfd --- /dev/null +++ b/data/maps/the_hive/rooms/Mastery Room.txtpb
@@ -0,0 +1,6 @@
1name: "Mastery Room"
2display_name: "Hive"
3masteries {
4 name: "MASTERY"
5 path: "Components/Collectables/smiley"
6}
diff --git a/data/maps/the_hive/rooms/Room 8.txtpb b/data/maps/the_hive/rooms/Room 8.txtpb new file mode 100644 index 0000000..6ba5d1d --- /dev/null +++ b/data/maps/the_hive/rooms/Room 8.txtpb
@@ -0,0 +1,30 @@
1name: "Room 8"
2display_name: "Hive"
3panels {
4 name: "BUMBLE"
5 path: "Panels/Room 8/panel_1"
6 clue: "bumble"
7 answer: "bee"
8 symbols: "question"
9}
10panels {
11 name: "CARPENTER"
12 path: "Panels/Room 8/panel_2"
13 clue: "carpenter"
14 answer: "bee"
15 symbols: "question"
16}
17panels {
18 name: "CLOVER"
19 path: "Panels/Room 8/panel_3"
20 clue: "clover"
21 answer: "honey"
22 symbols: "question"
23}
24panels {
25 name: "WILDFLOWER"
26 path: "Panels/Room 8/panel_4"
27 clue: "wildflower"
28 answer: "honey"
29 symbols: "question"
30}