summary refs log tree commit diff stats
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/connections.txtpb52
-rw-r--r--data/maps/the_digital/connections.txtpb35
-rw-r--r--data/maps/the_digital/doors.txtpb54
-rw-r--r--data/maps/the_digital/rooms/C Room.txtpb6
-rw-r--r--data/maps/the_digital/rooms/Chamber.txtpb62
-rw-r--r--data/maps/the_digital/rooms/Gallery Maze.txtpb7
-rw-r--r--data/maps/the_digital/rooms/Main Area.txtpb49
-rw-r--r--data/maps/the_digital/rooms/Tree Area.txtpb15
-rw-r--r--data/maps/the_digital/rooms/U Room.txtpb6
9 files changed, 286 insertions, 0 deletions
diff --git a/data/connections.txtpb b/data/connections.txtpb index fb1c794..15835bf 100644 --- a/data/connections.txtpb +++ b/data/connections.txtpb
@@ -17,6 +17,8 @@
17# the_colorful/White Room/GREAT 17# the_colorful/White Room/GREAT
18# the_colorful/Cyan Hallway/STURDY 18# the_colorful/Cyan Hallway/STURDY
19# the_darkroom/First Room/DOUBLESIDED 19# the_darkroom/First Room/DOUBLESIDED
20# the_digital/Main Area/UNYIELDING
21# the_digital/Tree Area/TREE
20connections { 22connections {
21 from { 23 from {
22 panel { 24 panel {
@@ -277,3 +279,53 @@ connections {
277 } 279 }
278 } 280 }
279} 281}
282connections {
283 from {
284 port {
285 map: "the_digital"
286 room: "Main Area"
287 name: "ENTRY3"
288 }
289 }
290 to {
291 port {
292 map: "the_entry"
293 room: "Starting Room"
294 name: "DIGITAL"
295 }
296 }
297}
298connections {
299 from {
300 port {
301 map: "the_digital"
302 room: "Main Area"
303 name: "ENTRY2"
304 }
305 }
306 to {
307 port {
308 map: "the_entry"
309 room: "Starting Room"
310 name: "DIGITAL"
311 }
312 }
313 oneway: true
314}
315connections {
316 from {
317 port {
318 map: "the_digital"
319 room: "Main Area"
320 name: "ENTRY1"
321 }
322 }
323 to {
324 port {
325 map: "the_entry"
326 room: "Starting Room"
327 name: "DIGITAL"
328 }
329 }
330 oneway: true
331}
diff --git a/data/maps/the_digital/connections.txtpb b/data/maps/the_digital/connections.txtpb new file mode 100644 index 0000000..04d612e --- /dev/null +++ b/data/maps/the_digital/connections.txtpb
@@ -0,0 +1,35 @@
1connections {
2 from_room: "Main Area"
3 to_room: "Chamber"
4 door { name: "U Entrance" }
5}
6connections {
7 from_room: "Main Area"
8 to_room: "Chamber"
9 door { name: "C Entrance" }
10}
11connections {
12 from_room: "Chamber"
13 to_room: "U Room"
14 door { name: "U Exit" }
15}
16connections {
17 from_room: "Chamber"
18 to_room: "C Room"
19 door { name: "C Exit" }
20}
21connections {
22 from_room: "Main Area"
23 to_room: "Gallery Maze"
24 door { name: "Gallery Entrance" }
25}
26connections {
27 from_room: "Gallery Maze"
28 to_room: "Main Area"
29 oneway: true
30}
31connections {
32 from_room: "Tree Area"
33 to_room: "Main Area"
34 door { name: "Tree Entrance" }
35}
diff --git a/data/maps/the_digital/doors.txtpb b/data/maps/the_digital/doors.txtpb new file mode 100644 index 0000000..3a2e381 --- /dev/null +++ b/data/maps/the_digital/doors.txtpb
@@ -0,0 +1,54 @@
1doors {
2 name: "U Entrance"
3 type: EVENT
4 panels { room: "Main Area" name: "TIN" }
5}
6doors {
7 name: "C Entrance"
8 type: EVENT
9 panels { room: "Main Area" name: "HIT" }
10}
11doors {
12 name: "U Exit"
13 type: EVENT
14 panels { room: "Main Area" name: "TIN" }
15 panels { room: "Chamber" name: "I" }
16 panels { room: "Chamber" name: "HI" }
17 panels { room: "Chamber" name: "IN" }
18 panels { room: "Chamber" name: "INN" }
19 panels { room: "Chamber" name: "YOU" }
20 panels { room: "Chamber" name: "BYE" }
21 panels { room: "Chamber" name: "OUT" }
22}
23doors {
24 name: "C Exit"
25 type: EVENT
26 panels { room: "Main Area" name: "HIT" }
27 panels { room: "Chamber" name: "I" }
28 panels { room: "Chamber" name: "HI" }
29 panels { room: "Chamber" name: "IN" }
30 panels { room: "Chamber" name: "INN" }
31 panels { room: "Chamber" name: "YOU" }
32 panels { room: "Chamber" name: "BYE" }
33 panels { room: "Chamber" name: "OUT" }
34}
35doors {
36 name: "Gallery Entrance"
37 type: STANDARD
38 receivers: "Components/Doors/maze"
39 panels { room: "Main Area" name: "PAINTING" }
40 location_room: "Main Area"
41}
42doors {
43 name: "Control Center Blue Door"
44 type: CONTROL_CENTER_COLOR
45 receivers: "Components/Doors/maze2"
46 control_center_color: "blue"
47}
48doors {
49 name: "Tree Entrance"
50 type: STANDARD
51 receivers: "Components/Doors/tree"
52 panels { room: "Tree Area" name: "TREE" }
53 location_room: "Tree Area"
54}
diff --git a/data/maps/the_digital/rooms/C Room.txtpb b/data/maps/the_digital/rooms/C Room.txtpb new file mode 100644 index 0000000..5fdc526 --- /dev/null +++ b/data/maps/the_digital/rooms/C Room.txtpb
@@ -0,0 +1,6 @@
1name: "C Room"
2display_name: "Chamber"
3letters {
4 key: "c"
5 path: "Components/Collectables/c"
6}
diff --git a/data/maps/the_digital/rooms/Chamber.txtpb b/data/maps/the_digital/rooms/Chamber.txtpb new file mode 100644 index 0000000..6665dbb --- /dev/null +++ b/data/maps/the_digital/rooms/Chamber.txtpb
@@ -0,0 +1,62 @@
1name: "Chamber"
2display_name: "Chamber"
3panels {
4 name: "I"
5 path: "Panels/c1"
6 clue: "i"
7 answer: "i"
8}
9panels {
10 name: "HI"
11 path: "Panels/c2"
12 clue: "hi"
13 answer: "hi"
14}
15panels {
16 name: "IN"
17 path: "Panels/c3"
18 clue: "in"
19 answer: "in"
20}
21panels {
22 name: "EYE"
23 path: "Panels/c4"
24 clue: "eye"
25 answer: "i"
26 symbols: "zero"
27}
28panels {
29 name: "HIGH"
30 path: "Panels/c5"
31 clue: "high"
32 answer: "hi"
33 symbols: "zero"
34}
35panels {
36 name: "INN"
37 path: "Panels/c6"
38 clue: "inn"
39 answer: "in"
40 symbols: "zero"
41}
42panels {
43 name: "YOU"
44 path: "Panels/c7"
45 clue: "you"
46 answer: "i"
47 symbols: "sun"
48}
49panels {
50 name: "BYE"
51 path: "Panels/c8"
52 clue: "bye"
53 answer: "hi"
54 symbols: "sun"
55}
56panels {
57 name: "OUT"
58 path: "Panels/c9"
59 clue: "out"
60 answer: "in"
61 symbols: "sun"
62}
diff --git a/data/maps/the_digital/rooms/Gallery Maze.txtpb b/data/maps/the_digital/rooms/Gallery Maze.txtpb new file mode 100644 index 0000000..9190728 --- /dev/null +++ b/data/maps/the_digital/rooms/Gallery Maze.txtpb
@@ -0,0 +1,7 @@
1name: "Gallery Maze"
2display_name: "Main Area"
3ports {
4 name: "GALLERY"
5 path: "Components/Warps/worldport4"
6 orientation: "east"
7}
diff --git a/data/maps/the_digital/rooms/Main Area.txtpb b/data/maps/the_digital/rooms/Main Area.txtpb new file mode 100644 index 0000000..ea2ba59 --- /dev/null +++ b/data/maps/the_digital/rooms/Main Area.txtpb
@@ -0,0 +1,49 @@
1name: "Main Area"
2display_name: "Main Area"
3panels {
4 name: "HIT"
5 path: "Panels/open_c"
6 clue: "hit"
7 answer: "hit"
8}
9panels {
10 name: "TIN"
11 path: "Panels/open_u"
12 clue: "tin"
13 answer: "tin"
14}
15panels {
16 name: "PAINTING"
17 path: "Panels/open_maze"
18 clue: "painting"
19 answer: "art"
20 symbols: "example"
21}
22panels {
23 name: "COLOR"
24 path: "Panels/open_maze2"
25 clue: "color"
26 answer: "blue"
27 symbols: "example"
28}
29ports {
30 name: "ENTRY1"
31 path: "Components/Worldports/worldport3"
32 orientation: "west"
33}
34ports {
35 name: "ENTRY2"
36 path: "Components/Worldports/worldport"
37 orientation: "south"
38}
39ports {
40 name: "ENTRY3"
41 path: "Components/Worldports/worldport2"
42 orientation: "south"
43}
44ports {
45 name: "UNYIELDING"
46 path: "Components/Warps/worldport5"
47 orientation: "east"
48 required_door { name: "Control Center Blue Door" }
49}
diff --git a/data/maps/the_digital/rooms/Tree Area.txtpb b/data/maps/the_digital/rooms/Tree Area.txtpb new file mode 100644 index 0000000..00683a9 --- /dev/null +++ b/data/maps/the_digital/rooms/Tree Area.txtpb
@@ -0,0 +1,15 @@
1name: "Tree Area"
2display_name: "Main Area"
3panels {
4 name: "TREE"
5 path: "Panels/open_tree"
6 clue: "tree"
7 answer: "trunk"
8 symbols: "boxes"
9}
10ports {
11 name: "TREE"
12 path: "Components/Worldports/worldport4"
13 orientation: "east"
14 # This is double sided.
15}
diff --git a/data/maps/the_digital/rooms/U Room.txtpb b/data/maps/the_digital/rooms/U Room.txtpb new file mode 100644 index 0000000..5b3e1cb --- /dev/null +++ b/data/maps/the_digital/rooms/U Room.txtpb
@@ -0,0 +1,6 @@
1name: "U Room"
2display_name: "Chamber"
3letters {
4 key: "u"
5 path: "Components/Collectables/u"
6}