diff options
-rw-r--r-- | data/connections.txtpb | 51 | ||||
-rw-r--r-- | data/maps/the_invisible/connections.txtpb | 5 | ||||
-rw-r--r-- | data/maps/the_invisible/doors.txtpb | 7 | ||||
-rw-r--r-- | data/maps/the_invisible/rooms/Entrance.txtpb | 14 | ||||
-rw-r--r-- | data/maps/the_invisible/rooms/Maze.txtpb | 11 |
5 files changed, 87 insertions, 1 deletions
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 @@ | |||
31 | # the_great/Back Area/TOWER (keep in mind the door only blocks one direction of this) | 31 | # the_great/Back Area/TOWER (keep in mind the door only blocks one direction of this) |
32 | # the_great/Back Area/TREE | 32 | # the_great/Back Area/TREE |
33 | # the_great/Talented Entrance/TALENTED | 33 | # the_great/Talented Entrance/TALENTED |
34 | # the_great/North Landscape/INVISIBLE (keep in mind the door only blocks one direction of this) | ||
35 | # the_hinterlands/Main Area/LEFT | 34 | # the_hinterlands/Main Area/LEFT |
36 | # the_hinterlands/Main Area/RIGHT | 35 | # the_hinterlands/Main Area/RIGHT |
37 | # the_hive/Main Area/DAED1 | 36 | # the_hive/Main Area/DAED1 |
@@ -587,3 +586,53 @@ connections { | |||
587 | } | 586 | } |
588 | } | 587 | } |
589 | } | 588 | } |
589 | connections { | ||
590 | from { | ||
591 | port { | ||
592 | map: "the_great" | ||
593 | room: "North Landscape" | ||
594 | name: "INVISIBLE" | ||
595 | } | ||
596 | } | ||
597 | to { | ||
598 | port { | ||
599 | map: "the_invisible" | ||
600 | room: "Entrance" | ||
601 | name: "ENTRY" | ||
602 | } | ||
603 | } | ||
604 | door { map: "the_great" name: "Invisible Entrance" } | ||
605 | oneway: true | ||
606 | } | ||
607 | connections { | ||
608 | from { | ||
609 | port { | ||
610 | map: "the_invisible" | ||
611 | room: "Entrance" | ||
612 | name: "ENTRY" | ||
613 | } | ||
614 | } | ||
615 | to { | ||
616 | room { | ||
617 | map: "the_entry" | ||
618 | name: "Starting Room" | ||
619 | } | ||
620 | } | ||
621 | oneway: true | ||
622 | } | ||
623 | connections { | ||
624 | from { | ||
625 | port { | ||
626 | map: "the_invisible" | ||
627 | room: "Maze" | ||
628 | name: "ENTRY" | ||
629 | } | ||
630 | } | ||
631 | to { | ||
632 | room { | ||
633 | map: "the_entry" | ||
634 | name: "Starting Room" | ||
635 | } | ||
636 | } | ||
637 | oneway: true | ||
638 | } | ||
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 @@ | |||
1 | connections { | ||
2 | from_room: "Entrance" | ||
3 | to_room: "Maze" | ||
4 | door { name: "Maze Entrance" } | ||
5 | } | ||
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 @@ | |||
1 | doors { | ||
2 | name: "Maze Entrance" | ||
3 | type: STANDARD | ||
4 | receivers: "Components/Doors/entry_1" | ||
5 | panels { room: "Entrance" name: "VISIBLE" } | ||
6 | location_room: "Entrance" | ||
7 | } | ||
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 @@ | |||
1 | name: "Entrance" | ||
2 | display_name: "Invisible" | ||
3 | panels { | ||
4 | name: "VISIBLE" | ||
5 | path: "Panels/Room_1/panel_1" | ||
6 | clue: "visible" | ||
7 | answer: "invisible" | ||
8 | symbols: "sun" | ||
9 | } | ||
10 | ports { | ||
11 | name: "ENTRY" | ||
12 | path: "Components/Warps/worldport2" | ||
13 | orientation: "north" | ||
14 | } | ||
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 @@ | |||
1 | name: "Maze" | ||
2 | display_name: "Invisible" | ||
3 | masteries { | ||
4 | name: "MASTERY" | ||
5 | path: "Components/Collectables/smiley" | ||
6 | } | ||
7 | ports { | ||
8 | name: "ENTRY" | ||
9 | path: "Components/Warps/worldport" | ||
10 | orientation: "south" | ||
11 | } | ||