From 2e76227a915cd6012d0b363918a5eb3c124b40d8 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 11 Aug 2025 10:09:44 -0400 Subject: Added the_door --- data/maps/the_door/connections.txtpb | 5 +++++ data/maps/the_door/doors.txtpb | 6 ++++++ data/maps/the_door/rooms/Ending.txtpb | 3 +++ data/maps/the_door/rooms/Main Area.txtpb | 16 ++++++++++++++++ 4 files changed, 30 insertions(+) create mode 100644 data/maps/the_door/connections.txtpb create mode 100644 data/maps/the_door/doors.txtpb create mode 100644 data/maps/the_door/rooms/Ending.txtpb create mode 100644 data/maps/the_door/rooms/Main Area.txtpb (limited to 'data/maps') diff --git a/data/maps/the_door/connections.txtpb b/data/maps/the_door/connections.txtpb new file mode 100644 index 0000000..8c24015 --- /dev/null +++ b/data/maps/the_door/connections.txtpb @@ -0,0 +1,5 @@ +connections { + from_room: "Main Area" + to_room: "Ending" + door { name: "Stairs" } +} diff --git a/data/maps/the_door/doors.txtpb b/data/maps/the_door/doors.txtpb new file mode 100644 index 0000000..f401f94 --- /dev/null +++ b/data/maps/the_door/doors.txtpb @@ -0,0 +1,6 @@ +doors { + name: "Stairs" + type: EVENT + panels { room: "Main Area" name: "HAIR" } + panels { room: "Main Area" name: "PART" } +} diff --git a/data/maps/the_door/rooms/Ending.txtpb b/data/maps/the_door/rooms/Ending.txtpb new file mode 100644 index 0000000..67937c5 --- /dev/null +++ b/data/maps/the_door/rooms/Ending.txtpb @@ -0,0 +1,3 @@ +name: "Ending" +display_name: "Main Area" +# TODO: Plum Ending diff --git a/data/maps/the_door/rooms/Main Area.txtpb b/data/maps/the_door/rooms/Main Area.txtpb new file mode 100644 index 0000000..47d2224 --- /dev/null +++ b/data/maps/the_door/rooms/Main Area.txtpb @@ -0,0 +1,16 @@ +name: "Main Area" +display_name: "Main Area" +panels { + name: "HAIR" + path: "Panels/Room_1/panel" + clue: "hair" + answer: "rabbit" + symbols: "question" +} +panels { + name: "PART" + path: "Panels/Room_1/panel2" + clue: "part" + answer: "hole" + symbols: "question" +} -- cgit 1.4.1