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_literate/connections.txtpb5
-rw-r--r--data/maps/the_literate/doors.txtpb14
-rw-r--r--data/maps/the_literate/rooms/Painting Room.txtpb7
-rw-r--r--data/maps/the_literate/rooms/Puzzle Room.txtpb63
4 files changed, 89 insertions, 0 deletions
diff --git a/data/maps/the_literate/connections.txtpb b/data/maps/the_literate/connections.txtpb new file mode 100644 index 0000000..71196ab --- /dev/null +++ b/data/maps/the_literate/connections.txtpb
@@ -0,0 +1,5 @@
1connections {
2 from_room: "Puzzle Room"
3 to_room: "Painting Room"
4 door { name: "Door" }
5}
diff --git a/data/maps/the_literate/doors.txtpb b/data/maps/the_literate/doors.txtpb new file mode 100644 index 0000000..480f54d --- /dev/null +++ b/data/maps/the_literate/doors.txtpb
@@ -0,0 +1,14 @@
1doors {
2 name: "Door"
3 type: STANDARD
4 receivers: "Components/Doors/entry_1"
5 panels { room: "Puzzle Room" name: "WATER" }
6 panels { room: "Puzzle Room" name: "JUICE" }
7 panels { room: "Puzzle Room" name: "MAGMA" }
8 panels { room: "Puzzle Room" name: "CREATURE" }
9 panels { room: "Puzzle Room" name: "SAND" }
10 panels { room: "Puzzle Room" name: "LIQUID" }
11 panels { room: "Puzzle Room" name: "STICK" }
12 panels { room: "Puzzle Room" name: "BREAD" }
13 location_room: "Puzzle Room"
14}
diff --git a/data/maps/the_literate/rooms/Painting Room.txtpb b/data/maps/the_literate/rooms/Painting Room.txtpb new file mode 100644 index 0000000..254e174 --- /dev/null +++ b/data/maps/the_literate/rooms/Painting Room.txtpb
@@ -0,0 +1,7 @@
1name: "Painting Room"
2display_name: "Literate"
3paintings {
4 name: "PYRAMID"
5 path: "Components/triangle"
6 orientation: "north"
7}
diff --git a/data/maps/the_literate/rooms/Puzzle Room.txtpb b/data/maps/the_literate/rooms/Puzzle Room.txtpb new file mode 100644 index 0000000..b86d1f7 --- /dev/null +++ b/data/maps/the_literate/rooms/Puzzle Room.txtpb
@@ -0,0 +1,63 @@
1name: "Puzzle Room"
2display_name: "Literate"
3panels {
4 name: "WATER"
5 path: "Panels/entry_1"
6 clue: "water"
7 answer: "ice"
8 symbols: "cross"
9}
10panels {
11 name: "JUICE"
12 path: "Panels/entry_2"
13 clue: "juice"
14 answer: "popsicle"
15 symbols: "cross"
16}
17panels {
18 name: "MAGMA"
19 path: "Panels/entry_3"
20 clue: "magma"
21 answer: "rock"
22 symbols: "cross"
23}
24panels {
25 name: "CREATURE"
26 path: "Panels/entry_4"
27 clue: "creature"
28 answer: "corpse"
29 symbols: "cross"
30}
31panels {
32 name: "SAND"
33 path: "Panels/entry_5"
34 clue: "sand"
35 answer: "glass"
36 symbols: "cross"
37}
38panels {
39 name: "LIQUID"
40 path: "Panels/entry_6"
41 clue: "liquid"
42 answer: "gas"
43 symbols: "cross"
44}
45panels {
46 name: "STICK"
47 path: "Panels/entry_7"
48 clue: "stick"
49 answer: "torch"
50 symbols: "cross"
51}
52panels {
53 name: "BREAD"
54 path: "Panels/entry_8"
55 clue: "bread"
56 answer: "toast"
57 symbols: "cross"
58}
59ports {
60 name: "ENTRY"
61 path: "Components/Warps/worldport"
62 orientation: "south"
63}