From 0fbaff9e15d1214192bd2b70bf4bc90d873727b6 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 14 Aug 2025 09:36:23 -0400 Subject: Added the_graveyard --- data/maps/the_graveyard/connections.txtpb | 5 +++++ data/maps/the_graveyard/doors.txtpb | 25 +++++++++++++++++++++++++ data/maps/the_graveyard/rooms/Inside.txtpb | 11 +++++++++++ data/maps/the_graveyard/rooms/Outside.txtpb | 18 ++++++++++++++++++ 4 files changed, 59 insertions(+) create mode 100644 data/maps/the_graveyard/connections.txtpb create mode 100644 data/maps/the_graveyard/doors.txtpb create mode 100644 data/maps/the_graveyard/rooms/Inside.txtpb create mode 100644 data/maps/the_graveyard/rooms/Outside.txtpb (limited to 'data/maps/the_graveyard') diff --git a/data/maps/the_graveyard/connections.txtpb b/data/maps/the_graveyard/connections.txtpb new file mode 100644 index 0000000..b581a82 --- /dev/null +++ b/data/maps/the_graveyard/connections.txtpb @@ -0,0 +1,5 @@ +connections { + from_room: "Outside" + to_room: "Inside" + door { name: "Mausoleum Door" } +} diff --git a/data/maps/the_graveyard/doors.txtpb b/data/maps/the_graveyard/doors.txtpb new file mode 100644 index 0000000..64204ae --- /dev/null +++ b/data/maps/the_graveyard/doors.txtpb @@ -0,0 +1,25 @@ +doors { + name: "Outside Puzzles" + type: EVENT + # TODO: gravestones + # The Maze (the_great) + # The Tree (the_tree) + # The Landscapes (the_great) + # The Three Doors (the_three_doors) + # Behind The Keen (the_linear) + # Into The Mouth (the_great) + # Red Against Blue (the_great) + # Building Building (the_great) +} +doors { + name: "Mausoleum Door" + type: EVENT + panels { room: "Outside" name: "FOOT" } + panels { room: "Outside" name: "SEVERE" } +} +doors { + name: "Double Letters" + type: EVENT + switches: "double_letters" + # TODO: once again, not sure whether this is how it should work +} diff --git a/data/maps/the_graveyard/rooms/Inside.txtpb b/data/maps/the_graveyard/rooms/Inside.txtpb new file mode 100644 index 0000000..e8b3e41 --- /dev/null +++ b/data/maps/the_graveyard/rooms/Inside.txtpb @@ -0,0 +1,11 @@ +name: "Inside" +display_name: "Inside" +panels { + name: "REMEMBER" + path: "Panels/panel_3" + clue: "remember" + answer: "remember" + required_door { name: "Double Letters" } +} +# TODO: Black Ending +# TODO: Not sure if the paintings in here should be randomized. diff --git a/data/maps/the_graveyard/rooms/Outside.txtpb b/data/maps/the_graveyard/rooms/Outside.txtpb new file mode 100644 index 0000000..6ea78a1 --- /dev/null +++ b/data/maps/the_graveyard/rooms/Outside.txtpb @@ -0,0 +1,18 @@ +name: "Outside" +display_name: "Outside" +panels { + name: "FOOT" + path: "Panels/panel_1" + clue: "foot" + answer: "yard" + symbols: "boxes" + required_door { name: "Outside Puzzles" } +} +panels { + name: "SEVERE" + path: "Panels/panel_2" + clue: "severe" + answer: "grave" + symbols: "sun" + required_door { name: "Outside Puzzles" } +} -- cgit 1.4.1