summary refs log tree commit diff stats
path: root/data/maps
diff options
context:
space:
mode:
Diffstat (limited to 'data/maps')
-rw-r--r--data/maps/the_parthenon/connections.txtpb20
-rw-r--r--data/maps/the_parthenon/doors.txtpb32
-rw-r--r--data/maps/the_parthenon/rooms/Ending.txtpb3
-rw-r--r--data/maps/the_parthenon/rooms/K2 Room.txtpb7
-rw-r--r--data/maps/the_parthenon/rooms/Lavender Area.txtpb23
-rw-r--r--data/maps/the_parthenon/rooms/Main Area.txtpb71
-rw-r--r--data/maps/the_parthenon/rooms/U Keyholder.txtpb6
7 files changed, 162 insertions, 0 deletions
diff --git a/data/maps/the_parthenon/connections.txtpb b/data/maps/the_parthenon/connections.txtpb new file mode 100644 index 0000000..a07d858 --- /dev/null +++ b/data/maps/the_parthenon/connections.txtpb
@@ -0,0 +1,20 @@
1connections {
2 from_room: "Main Area"
3 to_room: "K2 Room"
4 door { name: "K2 Door" }
5}
6connections {
7 from_room: "Main Area"
8 to_room: "Ending"
9 door { name: "Ending Door" }
10}
11connections {
12 from_room: "Main Area"
13 to_room: "Lavender Area"
14 door { name: "Double Letters" }
15}
16connections {
17 from_room: "Lavender Area"
18 to_room: "U Keyholder"
19 door { name: "Lavender Cubes" }
20}
diff --git a/data/maps/the_parthenon/doors.txtpb b/data/maps/the_parthenon/doors.txtpb new file mode 100644 index 0000000..82a2748 --- /dev/null +++ b/data/maps/the_parthenon/doors.txtpb
@@ -0,0 +1,32 @@
1doors {
2 name: "Double Letters"
3 type: EVENT
4 switches: "double_letters"
5}
6doors {
7 name: "Lavender Cubes"
8 type: EVENT
9 switches: "lavender_cubes"
10}
11doors {
12 name: "K2 Door"
13 type: STANDARD
14 receivers: "Components/Doors/entry_2"
15 panels { room: "Main Area" name: "XERXES" answer: "persia" }
16 panels { room: "Main Area" name: "ARTHUR" answer: "england" }
17 panels { room: "Main Area" name: "CLEOPATRA" answer: "egypt" }
18 panels { room: "Main Area" name: "NAPOLEON" answer: "france" }
19 panels { room: "Main Area" name: "ALEXANDER" answer: "greece" }
20 panels { room: "Main Area" name: "CAESAR" answer: "rome" }
21 location_room: "Main Area"
22}
23doors {
24 name: "Ending Door"
25 type: EVENT
26 panels { room: "Main Area" name: "XERXES" answer: "xerxes" }
27 panels { room: "Main Area" name: "ARTHUR" answer: "arthur" }
28 panels { room: "Main Area" name: "CLEOPATRA" answer: "cleopatra" }
29 panels { room: "Main Area" name: "NAPOLEON" answer: "napoleon" }
30 panels { room: "Main Area" name: "ALEXANDER" answer: "alexander" }
31 panels { room: "Main Area" name: "CAESAR" answer: "caesar" }
32}
diff --git a/data/maps/the_parthenon/rooms/Ending.txtpb b/data/maps/the_parthenon/rooms/Ending.txtpb new file mode 100644 index 0000000..c14ab78 --- /dev/null +++ b/data/maps/the_parthenon/rooms/Ending.txtpb
@@ -0,0 +1,3 @@
1name: "Ending"
2display_name: "Parthenon"
3# TODO: Cyan Ending
diff --git a/data/maps/the_parthenon/rooms/K2 Room.txtpb b/data/maps/the_parthenon/rooms/K2 Room.txtpb new file mode 100644 index 0000000..1c95ad5 --- /dev/null +++ b/data/maps/the_parthenon/rooms/K2 Room.txtpb
@@ -0,0 +1,7 @@
1name: "K2 Room"
2display_name: "Parthenon"
3letters {
4 key: "k"
5 level2: true
6 path: "Components/Collectables/collectable"
7}
diff --git a/data/maps/the_parthenon/rooms/Lavender Area.txtpb b/data/maps/the_parthenon/rooms/Lavender Area.txtpb new file mode 100644 index 0000000..547b9d6 --- /dev/null +++ b/data/maps/the_parthenon/rooms/Lavender Area.txtpb
@@ -0,0 +1,23 @@
1name: "Lavender Area"
2display_name: "Parthenon"
3panels {
4 name: "ME"
5 path: "Panels/Lavender/panel_7"
6 clue: "me"
7 answer: "you"
8 symbols: "sun"
9}
10panels {
11 name: "WOOD"
12 path: "Panels/Lavender/panel_8"
13 clue: "wood"
14 answer: "yew"
15 symbols: "example"
16}
17panels {
18 name: "SHEEP"
19 path: "Panels/Lavender/panel_9"
20 clue: "sheep"
21 answer: "ewe"
22 symbols: "gender"
23}
diff --git a/data/maps/the_parthenon/rooms/Main Area.txtpb b/data/maps/the_parthenon/rooms/Main Area.txtpb new file mode 100644 index 0000000..db62c2c --- /dev/null +++ b/data/maps/the_parthenon/rooms/Main Area.txtpb
@@ -0,0 +1,71 @@
1name: "Main Area"
2display_name: "Parthenon"
3panels {
4 name: "XERXES"
5 path: "Panels/Main/panel_1"
6 clue: "xerxes"
7 answer: "xerxes"
8 proxies { answer: "persia" path: "Panels/Empires/panel_7" }
9 #proxies { answer: "xerxes" path: "Panels/Rulers/panel_13" }
10 required_door { name: "Double Letters" }
11}
12panels {
13 name: "ARTHUR"
14 path: "Panels/Main/panel_2"
15 clue: "arthur"
16 answer: "arthur"
17 proxies { answer: "england" path: "Panels/Empires/panel_8" }
18 #proxies { answer: "arthur" path: "Panels/Rulers/panel_14" }
19 required_door { name: "Double Letters" }
20}
21panels {
22 name: "CLEOPATRA"
23 path: "Panels/Main/panel_3"
24 clue: "cleopatra"
25 answer: "cleopatra"
26 proxies { answer: "egypt" path: "Panels/Empires/panel_9" }
27 #proxies { answer: "cleopatra" path: "Panels/Rulers/panel_15" }
28 required_door { name: "Double Letters" }
29}
30panels {
31 name: "NAPOLEON"
32 path: "Panels/Main/panel_4"
33 clue: "napoleon"
34 answer: "napoleon"
35 proxies { answer: "france" path: "Panels/Empires/panel_10" }
36 #proxies { answer: "napoleon" path: "Panels/Rulers/panel_16" }
37 required_door { name: "Double Letters" }
38}
39panels {
40 name: "ALEXANDER"
41 path: "Panels/Main/panel_5"
42 clue: "alexander"
43 answer: "alexander"
44 proxies { answer: "greece" path: "Panels/Empires/panel_11" }
45 #proxies { answer: "alexander" path: "Panels/Rulers/panel_17" }
46 required_door { name: "Double Letters" }
47}
48panels {
49 name: "CAESAR"
50 path: "Panels/Main/panel_6"
51 clue: "caesar"
52 answer: "caesar"
53 proxies { answer: "rome" path: "Panels/Empires/panel_12" }
54 #proxies { answer: "caesar" path: "Panels/Rulers/panel_18" }
55 required_door { name: "Double Letters" }
56}
57ports {
58 name: "GALLERY"
59 path: "Components/Warps/worldport"
60 orientation: "south"
61}
62ports {
63 name: "ENTRY"
64 path: "Components/Warps/worldport2"
65 orientation: "south"
66}
67ports {
68 name: "REVITALIZED"
69 path: "Components/Warps/worldport3"
70 orientation: "north"
71}
diff --git a/data/maps/the_parthenon/rooms/U Keyholder.txtpb b/data/maps/the_parthenon/rooms/U Keyholder.txtpb new file mode 100644 index 0000000..d3107b4 --- /dev/null +++ b/data/maps/the_parthenon/rooms/U Keyholder.txtpb
@@ -0,0 +1,6 @@
1name: "U Keyholder"
2display_name: "Parthenon"
3keyholders {
4 name: "U"
5 path: "Components/KeyHolders/keyHolderU"
6}