From b58e1154edb450ebeb7cef97384ef6f3c579b326 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 15 Aug 2025 13:44:24 -0400 Subject: Added the_linear --- data/maps/the_graveyard/doors.txtpb | 2 +- data/maps/the_linear/doors.txtpb | 13 ++++++++ data/maps/the_linear/rooms/Room.txtpb | 63 +++++++++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 data/maps/the_linear/doors.txtpb create mode 100644 data/maps/the_linear/rooms/Room.txtpb (limited to 'data/maps') diff --git a/data/maps/the_graveyard/doors.txtpb b/data/maps/the_graveyard/doors.txtpb index 5570bb7..5743fb7 100644 --- a/data/maps/the_graveyard/doors.txtpb +++ b/data/maps/the_graveyard/doors.txtpb @@ -6,10 +6,10 @@ doors { doors { map: "the_great" name: "The Landscapes Gravestone" } doors { map: "the_great" name: "The Maze Gravestone" } doors { map: "the_great" name: "Building Building Gravestone" } + doors { map: "the_linear" name: "Behind The Keen Gravestone" } # TODO: gravestones # The Tree (the_tree) # The Three Doors (the_three_doors) - # Behind The Keen (the_linear) } doors { name: "Mausoleum Door" diff --git a/data/maps/the_linear/doors.txtpb b/data/maps/the_linear/doors.txtpb new file mode 100644 index 0000000..63d8ae8 --- /dev/null +++ b/data/maps/the_linear/doors.txtpb @@ -0,0 +1,13 @@ +doors { + name: "Behind The Keen Gravestone" + type: GRAVESTONE + panels { room: "Room" name: "HORN" } + panels { room: "Room" name: "ION" } + panels { room: "Room" name: "TON" } + panels { room: "Room" name: "ROT" } + panels { room: "Room" name: "IT" } + panels { room: "Room" name: "HIT" } + panels { room: "Room" name: "INTO" } + panels { room: "Room" name: "NOR" } + location_room: "Room" +} diff --git a/data/maps/the_linear/rooms/Room.txtpb b/data/maps/the_linear/rooms/Room.txtpb new file mode 100644 index 0000000..375eced --- /dev/null +++ b/data/maps/the_linear/rooms/Room.txtpb @@ -0,0 +1,63 @@ +name: "Room" +display_name: "Room" +panels { + name: "HORN" + path: "Panels/entry_1" + clue: "horn" + answer: "thorn" + symbols: "sparkles" +} +panels { + name: "ION" + path: "Panels/entry_2" + clue: "ion" + answer: "iron" + symbols: "sparkles" +} +panels { + name: "TON" + path: "Panels/entry_3" + clue: "ton" + answer: "torn" + symbols: "sparkles" +} +panels { + name: "ROT" + path: "Panels/entry_4" + clue: "rot" + answer: "riot" + symbols: "sparkles" +} +panels { + name: "IT" + path: "Panels/entry_5" + clue: "it" + answer: "hit" + symbols: "sparkles" +} +panels { + name: "HIT" + path: "Panels/entry_6" + clue: "hit" + answer: "hint" + symbols: "sparkles" +} +panels { + name: "INTO" + path: "Panels/entry_7" + clue: "into" + answer: "intro" + symbols: "sparkles" +} +panels { + name: "NOR" + path: "Panels/entry_8" + clue: "nor" + answer: "north" + symbols: "sparkles" +} +ports { + name: "GREAT" + path: "Components/Warps/worldport" + orientation: "south" +} -- cgit 1.4.1