From 3f0f3cf36546c3e21ad0b58148bf007322855823 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 14 Aug 2025 17:39:26 -0400 Subject: Added the_invisible --- data/connections.txtpb | 51 +++++++++++++++++++++++++++- data/maps/the_invisible/connections.txtpb | 5 +++ data/maps/the_invisible/doors.txtpb | 7 ++++ data/maps/the_invisible/rooms/Entrance.txtpb | 14 ++++++++ data/maps/the_invisible/rooms/Maze.txtpb | 11 ++++++ 5 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 data/maps/the_invisible/connections.txtpb create mode 100644 data/maps/the_invisible/doors.txtpb create mode 100644 data/maps/the_invisible/rooms/Entrance.txtpb create mode 100644 data/maps/the_invisible/rooms/Maze.txtpb (limited to 'data') diff --git a/data/connections.txtpb b/data/connections.txtpb index dfa2906..8fd519b 100644 --- a/data/connections.txtpb +++ b/data/connections.txtpb @@ -31,7 +31,6 @@ # the_great/Back Area/TOWER (keep in mind the door only blocks one direction of this) # the_great/Back Area/TREE # the_great/Talented Entrance/TALENTED -# the_great/North Landscape/INVISIBLE (keep in mind the door only blocks one direction of this) # the_hinterlands/Main Area/LEFT # the_hinterlands/Main Area/RIGHT # the_hive/Main Area/DAED1 @@ -587,3 +586,53 @@ connections { } } } +connections { + from { + port { + map: "the_great" + room: "North Landscape" + name: "INVISIBLE" + } + } + to { + port { + map: "the_invisible" + room: "Entrance" + name: "ENTRY" + } + } + door { map: "the_great" name: "Invisible Entrance" } + oneway: true +} +connections { + from { + port { + map: "the_invisible" + room: "Entrance" + name: "ENTRY" + } + } + to { + room { + map: "the_entry" + name: "Starting Room" + } + } + oneway: true +} +connections { + from { + port { + map: "the_invisible" + room: "Maze" + name: "ENTRY" + } + } + to { + room { + map: "the_entry" + name: "Starting Room" + } + } + oneway: true +} diff --git a/data/maps/the_invisible/connections.txtpb b/data/maps/the_invisible/connections.txtpb new file mode 100644 index 0000000..af23ed7 --- /dev/null +++ b/data/maps/the_invisible/connections.txtpb @@ -0,0 +1,5 @@ +connections { + from_room: "Entrance" + to_room: "Maze" + door { name: "Maze Entrance" } +} diff --git a/data/maps/the_invisible/doors.txtpb b/data/maps/the_invisible/doors.txtpb new file mode 100644 index 0000000..dfe77e2 --- /dev/null +++ b/data/maps/the_invisible/doors.txtpb @@ -0,0 +1,7 @@ +doors { + name: "Maze Entrance" + type: STANDARD + receivers: "Components/Doors/entry_1" + panels { room: "Entrance" name: "VISIBLE" } + location_room: "Entrance" +} diff --git a/data/maps/the_invisible/rooms/Entrance.txtpb b/data/maps/the_invisible/rooms/Entrance.txtpb new file mode 100644 index 0000000..19521e1 --- /dev/null +++ b/data/maps/the_invisible/rooms/Entrance.txtpb @@ -0,0 +1,14 @@ +name: "Entrance" +display_name: "Invisible" +panels { + name: "VISIBLE" + path: "Panels/Room_1/panel_1" + clue: "visible" + answer: "invisible" + symbols: "sun" +} +ports { + name: "ENTRY" + path: "Components/Warps/worldport2" + orientation: "north" +} diff --git a/data/maps/the_invisible/rooms/Maze.txtpb b/data/maps/the_invisible/rooms/Maze.txtpb new file mode 100644 index 0000000..4461f08 --- /dev/null +++ b/data/maps/the_invisible/rooms/Maze.txtpb @@ -0,0 +1,11 @@ +name: "Maze" +display_name: "Invisible" +masteries { + name: "MASTERY" + path: "Components/Collectables/smiley" +} +ports { + name: "ENTRY" + path: "Components/Warps/worldport" + orientation: "south" +} -- cgit 1.4.1