From 92ecbb7dd395600a1a88436d7b1ee0f6fbf5dd2f Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 15 Aug 2025 06:18:27 -0400 Subject: Added the_liberated --- data/connections.txtpb | 18 +++++++ data/maps/the_liberated/connections.txtpb | 5 ++ data/maps/the_liberated/doors.txtpb | 14 +++++ data/maps/the_liberated/rooms/Painting Room.txtpb | 7 +++ data/maps/the_liberated/rooms/Puzzle Room.txtpb | 63 +++++++++++++++++++++++ 5 files changed, 107 insertions(+) create mode 100644 data/maps/the_liberated/connections.txtpb create mode 100644 data/maps/the_liberated/doors.txtpb create mode 100644 data/maps/the_liberated/rooms/Painting Room.txtpb create mode 100644 data/maps/the_liberated/rooms/Puzzle Room.txtpb diff --git a/data/connections.txtpb b/data/connections.txtpb index 7f153d5..fc67cd8 100644 --- a/data/connections.txtpb +++ b/data/connections.txtpb @@ -6,6 +6,7 @@ # the_entry/Eye Room/LIONIZED # the_entry/Parthenon Return/PARTHENON # the_entry/Link Area/PYRAMID +# the_entry/Link Area/BROWN # four_rooms/Time Room/OWL # four_rooms/Examples Room/DAEDALUS # control center -> the_ancient @@ -35,6 +36,7 @@ # the_hive/Main Area/DAED2 # the_hive/Main Area/DAED3 # the_impressive/Green Eye/PLAZA +# the_liberated/Painting Room/PYRAMID connections { from { panel { @@ -666,3 +668,19 @@ connections { } } } +connections { + from { + port { + map: "the_entry" + room: "Link Area" + name: "BLUE" + } + } + to { + port { + map: "the_liberated" + room: "Puzzle Room" + name: "ENTRY" + } + } +} diff --git a/data/maps/the_liberated/connections.txtpb b/data/maps/the_liberated/connections.txtpb new file mode 100644 index 0000000..71196ab --- /dev/null +++ b/data/maps/the_liberated/connections.txtpb @@ -0,0 +1,5 @@ +connections { + from_room: "Puzzle Room" + to_room: "Painting Room" + door { name: "Door" } +} diff --git a/data/maps/the_liberated/doors.txtpb b/data/maps/the_liberated/doors.txtpb new file mode 100644 index 0000000..becddf9 --- /dev/null +++ b/data/maps/the_liberated/doors.txtpb @@ -0,0 +1,14 @@ +doors { + name: "Door" + type: STANDARD + receivers: "Components/Doors/entry_1" + panels { room: "Puzzle Room" name: "CORPSE" } + panels { room: "Puzzle Room" name: "PERSON" } + panels { room: "Puzzle Room" name: "MOOSE" } + panels { room: "Puzzle Room" name: "FUNGUS" } + panels { room: "Puzzle Room" name: "SAND" } + panels { room: "Puzzle Room" name: "CASTLE" } + panels { room: "Puzzle Room" name: "WOLF" } + panels { room: "Puzzle Room" name: "FOOT" } + location_room: "Puzzle Room" +} diff --git a/data/maps/the_liberated/rooms/Painting Room.txtpb b/data/maps/the_liberated/rooms/Painting Room.txtpb new file mode 100644 index 0000000..025281a --- /dev/null +++ b/data/maps/the_liberated/rooms/Painting Room.txtpb @@ -0,0 +1,7 @@ +name: "Painting Room" +display_name: "Liberated" +paintings { + name: "PYRAMID" + path: "Components/triangle" + orientation: "north" +} diff --git a/data/maps/the_liberated/rooms/Puzzle Room.txtpb b/data/maps/the_liberated/rooms/Puzzle Room.txtpb new file mode 100644 index 0000000..c83c5d8 --- /dev/null +++ b/data/maps/the_liberated/rooms/Puzzle Room.txtpb @@ -0,0 +1,63 @@ +name: "Puzzle Room" +display_name: "Liberated" +panels { + name: "CORPSE" + path: "Panels/entry_1" + clue: "corpse" + answer: "corpses" + symbols: "planet" +} +panels { + name: "PERSON" + path: "Panels/entry_2" + clue: "person" + answer: "people" + symbols: "planet" +} +panels { + name: "MOOSE" + path: "Panels/entry_3" + clue: "moose" + answer: "moose" + symbols: "planet" +} +panels { + name: "FUNGUS" + path: "Panels/entry_4" + clue: "fungus" + answer: "fungi" + symbols: "planet" +} +panels { + name: "SAND" + path: "Panels/entry_5" + clue: "sand" + answer: "sands" + symbols: "planet" +} +panels { + name: "CASTLE" + path: "Panels/entry_6" + clue: "castle" + answer: "castles" + symbols: "planet" +} +panels { + name: "WOLF" + path: "Panels/entry_7" + clue: "wolf" + answer: "wolves" + symbols: "planet" +} +panels { + name: "FOOT" + path: "Panels/entry_8" + clue: "foot" + answer: "feet" + symbols: "planet" +} +ports { + name: "ENTRY" + path: "Components/Warps/worldport" + orientation: "south" +} -- cgit 1.4.1