From c75db26e333f9d9863743e29166b6384f7270f44 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 16 Aug 2025 21:58:31 -0400 Subject: Added the_literate --- data/maps/the_literate/connections.txtpb | 5 ++ data/maps/the_literate/doors.txtpb | 14 ++++++ data/maps/the_literate/rooms/Painting Room.txtpb | 7 +++ data/maps/the_literate/rooms/Puzzle Room.txtpb | 63 ++++++++++++++++++++++++ 4 files changed, 89 insertions(+) create mode 100644 data/maps/the_literate/connections.txtpb create mode 100644 data/maps/the_literate/doors.txtpb create mode 100644 data/maps/the_literate/rooms/Painting Room.txtpb create mode 100644 data/maps/the_literate/rooms/Puzzle Room.txtpb (limited to 'data/maps/the_literate') 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 @@ +connections { + from_room: "Puzzle Room" + to_room: "Painting Room" + door { name: "Door" } +} 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 @@ +doors { + name: "Door" + type: STANDARD + receivers: "Components/Doors/entry_1" + panels { room: "Puzzle Room" name: "WATER" } + panels { room: "Puzzle Room" name: "JUICE" } + panels { room: "Puzzle Room" name: "MAGMA" } + panels { room: "Puzzle Room" name: "CREATURE" } + panels { room: "Puzzle Room" name: "SAND" } + panels { room: "Puzzle Room" name: "LIQUID" } + panels { room: "Puzzle Room" name: "STICK" } + panels { room: "Puzzle Room" name: "BREAD" } + location_room: "Puzzle Room" +} 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 @@ +name: "Painting Room" +display_name: "Literate" +paintings { + name: "PYRAMID" + path: "Components/triangle" + orientation: "north" +} 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 @@ +name: "Puzzle Room" +display_name: "Literate" +panels { + name: "WATER" + path: "Panels/entry_1" + clue: "water" + answer: "ice" + symbols: "cross" +} +panels { + name: "JUICE" + path: "Panels/entry_2" + clue: "juice" + answer: "popsicle" + symbols: "cross" +} +panels { + name: "MAGMA" + path: "Panels/entry_3" + clue: "magma" + answer: "rock" + symbols: "cross" +} +panels { + name: "CREATURE" + path: "Panels/entry_4" + clue: "creature" + answer: "corpse" + symbols: "cross" +} +panels { + name: "SAND" + path: "Panels/entry_5" + clue: "sand" + answer: "glass" + symbols: "cross" +} +panels { + name: "LIQUID" + path: "Panels/entry_6" + clue: "liquid" + answer: "gas" + symbols: "cross" +} +panels { + name: "STICK" + path: "Panels/entry_7" + clue: "stick" + answer: "torch" + symbols: "cross" +} +panels { + name: "BREAD" + path: "Panels/entry_8" + clue: "bread" + answer: "toast" + symbols: "cross" +} +ports { + name: "ENTRY" + path: "Components/Warps/worldport" + orientation: "south" +} -- cgit 1.4.1