diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-16 21:58:31 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-16 21:58:31 -0400 |
| commit | c75db26e333f9d9863743e29166b6384f7270f44 (patch) | |
| tree | 106ca9385cb7ba24d3a639b9b9faa5f47c6b880f /data/maps/the_literate | |
| parent | 176175871f2074a83c49a1ed60e96cf7e9b9de8d (diff) | |
| download | lingo2-archipelago-c75db26e333f9d9863743e29166b6384f7270f44.tar.gz lingo2-archipelago-c75db26e333f9d9863743e29166b6384f7270f44.tar.bz2 lingo2-archipelago-c75db26e333f9d9863743e29166b6384f7270f44.zip | |
Added the_literate
Diffstat (limited to 'data/maps/the_literate')
| -rw-r--r-- | data/maps/the_literate/connections.txtpb | 5 | ||||
| -rw-r--r-- | data/maps/the_literate/doors.txtpb | 14 | ||||
| -rw-r--r-- | data/maps/the_literate/rooms/Painting Room.txtpb | 7 | ||||
| -rw-r--r-- | data/maps/the_literate/rooms/Puzzle Room.txtpb | 63 |
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 @@ | |||
| 1 | connections { | ||
| 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 @@ | |||
| 1 | doors { | ||
| 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 @@ | |||
| 1 | name: "Painting Room" | ||
| 2 | display_name: "Literate" | ||
| 3 | paintings { | ||
| 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 @@ | |||
| 1 | name: "Puzzle Room" | ||
| 2 | display_name: "Literate" | ||
| 3 | panels { | ||
| 4 | name: "WATER" | ||
| 5 | path: "Panels/entry_1" | ||
| 6 | clue: "water" | ||
| 7 | answer: "ice" | ||
| 8 | symbols: "cross" | ||
| 9 | } | ||
| 10 | panels { | ||
| 11 | name: "JUICE" | ||
| 12 | path: "Panels/entry_2" | ||
| 13 | clue: "juice" | ||
| 14 | answer: "popsicle" | ||
| 15 | symbols: "cross" | ||
| 16 | } | ||
| 17 | panels { | ||
| 18 | name: "MAGMA" | ||
| 19 | path: "Panels/entry_3" | ||
| 20 | clue: "magma" | ||
| 21 | answer: "rock" | ||
| 22 | symbols: "cross" | ||
| 23 | } | ||
| 24 | panels { | ||
| 25 | name: "CREATURE" | ||
| 26 | path: "Panels/entry_4" | ||
| 27 | clue: "creature" | ||
| 28 | answer: "corpse" | ||
| 29 | symbols: "cross" | ||
| 30 | } | ||
| 31 | panels { | ||
| 32 | name: "SAND" | ||
| 33 | path: "Panels/entry_5" | ||
| 34 | clue: "sand" | ||
| 35 | answer: "glass" | ||
| 36 | symbols: "cross" | ||
| 37 | } | ||
| 38 | panels { | ||
| 39 | name: "LIQUID" | ||
| 40 | path: "Panels/entry_6" | ||
| 41 | clue: "liquid" | ||
| 42 | answer: "gas" | ||
| 43 | symbols: "cross" | ||
| 44 | } | ||
| 45 | panels { | ||
| 46 | name: "STICK" | ||
| 47 | path: "Panels/entry_7" | ||
| 48 | clue: "stick" | ||
| 49 | answer: "torch" | ||
| 50 | symbols: "cross" | ||
| 51 | } | ||
| 52 | panels { | ||
| 53 | name: "BREAD" | ||
| 54 | path: "Panels/entry_8" | ||
| 55 | clue: "bread" | ||
| 56 | answer: "toast" | ||
| 57 | symbols: "cross" | ||
| 58 | } | ||
| 59 | ports { | ||
| 60 | name: "ENTRY" | ||
| 61 | path: "Components/Warps/worldport" | ||
| 62 | orientation: "south" | ||
| 63 | } | ||
