diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-26 04:53:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 10:53:11 +0200 |
commit | 7641d9590110fa7b4901c7f7ca0384392ef24375 (patch) | |
tree | 8efdfa5be3a88879a690a4a7351eb7b635989dc7 /data | |
parent | 00c16023c45301224400a06f31f637fdedba00ee (diff) | |
download | lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.gz lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.bz2 lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.zip |
Lingo: Add panels mode door shuffle (#3163)
* Created panels mode door shuffle * Added some panel door item names * Remove RUNT TURN panel door Not really useful. * Fix logic with First SIX related stuff * Add group_doors to slot data * Fix LEVEL 2 behavior with panels mode * Fixed unit tests * Fixed duplicate IDs from merge * Just regenerated new IDs * Fixed duplication of color and door group items * Removed unnecessary unit test option * Fix The Seeker being achievable without entrance door * Fix The Observant being achievable without locked panels * Added some more panel doors * Added Progressive Suits Area * Lingo: Fix Basement access with THE MASTER * Added indirect conditions for MASTER-blocked entrances * Fixed Incomparable achievement access * Fix STAIRS panel logic * Fix merge error with good items * Is this clearer? * DREAD and TURN LEARN * Allow a weird edge case for reduced locations Panels mode door shuffle + grouped doors + color shuffle + pilgrimage enabled is exactly the right number of items for reduced locations. Removing color shuffle also allows for disabling pilgrimage, adding sunwarp locking, or both, with a couple of locations left over. * Prevent small sphere one on panels mode * Added shuffle_doors aliases for old options * Fixed a unit test * Updated datafile * Tweaked requirements for reduced locations * Added player name to OptionError messages * Update generated.dat
Diffstat (limited to 'data')
-rw-r--r-- | data/LL1.yaml | 694 | ||||
-rw-r--r-- | data/generated.dat | bin | 136563 -> 148903 bytes | |||
-rw-r--r-- | data/ids.yaml | 142 |
3 files changed, 778 insertions, 58 deletions
diff --git a/data/LL1.yaml b/data/LL1.yaml index 3035446..1c9f4e5 100644 --- a/data/LL1.yaml +++ b/data/LL1.yaml | |||
@@ -1,6 +1,13 @@ | |||
1 | --- | 1 | --- |
2 | # This file is an associative array where the keys are region names. Rooms | 2 | # This file is an associative array where the keys are region names. Rooms |
3 | # have four properties: entrances, panels, doors, and paintings. | 3 | # have a number of properties: |
4 | # - entrances | ||
5 | # - panels | ||
6 | # - doors | ||
7 | # - panel_doors | ||
8 | # - paintings | ||
9 | # - progression | ||
10 | # - sunwarps | ||
4 | # | 11 | # |
5 | # entrances is an array of regions from which this room can be accessed. The | 12 | # entrances is an array of regions from which this room can be accessed. The |
6 | # key of each entry is the room that can access this one. The value is a list | 13 | # key of each entry is the room that can access this one. The value is a list |
@@ -13,7 +20,7 @@ | |||
13 | # room that the door is in. The room name may be omitted if the door is | 20 | # room that the door is in. The room name may be omitted if the door is |
14 | # located in the current room. | 21 | # located in the current room. |
15 | # | 22 | # |
16 | # panels is an array of panels in the room. The key of the array is an | 23 | # panels is a named array of panels in the room. The key of the array is an |
17 | # arbitrary name for the panel. Panels can have the following fields: | 24 | # arbitrary name for the panel. Panels can have the following fields: |
18 | # - id: The internal ID of the panel in the LINGO map | 25 | # - id: The internal ID of the panel in the LINGO map |
19 | # - required_room: In addition to having access to this room, the player must | 26 | # - required_room: In addition to having access to this room, the player must |
@@ -45,7 +52,7 @@ | |||
45 | # - hunt: If True, the tracker will show this panel even when it is | 52 | # - hunt: If True, the tracker will show this panel even when it is |
46 | # not a check. Used for hunts like the Number Hunt. | 53 | # not a check. Used for hunts like the Number Hunt. |
47 | # | 54 | # |
48 | # doors is an array of doors associated with this room. When door | 55 | # doors is a named array of doors associated with this room. When door |
49 | # randomization is enabled, each of these is an item. The key is a name that | 56 | # randomization is enabled, each of these is an item. The key is a name that |
50 | # will be displayed as part of the item's name. Doors can have the following | 57 | # will be displayed as part of the item's name. Doors can have the following |
51 | # fields: | 58 | # fields: |
@@ -78,6 +85,18 @@ | |||
78 | # - event: Denotes that the door is event only. This is similar to | 85 | # - event: Denotes that the door is event only. This is similar to |
79 | # setting both skip_location and skip_item. | 86 | # setting both skip_location and skip_item. |
80 | # | 87 | # |
88 | # panel_doors is a named array of "panel doors" associated with this room. | ||
89 | # When panel door shuffle is enabled, each of these becomes an item, and those | ||
90 | # items block access to the listed panels. The key is a name for internal | ||
91 | # reference only. Panel doors can have the following fields: | ||
92 | # - panels: Required. This is the set of panels that are blocked by this | ||
93 | # panel door. | ||
94 | # - item_name: Overrides the name of the item generated for this panel | ||
95 | # door. If not specified, the item name will be generated from | ||
96 | # the room name and the name(s) of the panel(s). | ||
97 | # - panel_group: When region grouping is enabled, all panel doors with the | ||
98 | # same group will be covered by a single item. | ||
99 | # | ||
81 | # paintings is an array of paintings in the room. This is used for painting | 100 | # paintings is an array of paintings in the room. This is used for painting |
82 | # shuffling. | 101 | # shuffling. |
83 | # - id: The internal painting ID from the LINGO map. | 102 | # - id: The internal painting ID from the LINGO map. |
@@ -105,6 +124,14 @@ | |||
105 | # fine in door shuffle mode. | 124 | # fine in door shuffle mode. |
106 | # - move: Denotes that the painting is able to move. | 125 | # - move: Denotes that the painting is able to move. |
107 | # | 126 | # |
127 | # progression is a named array of items that define an ordered set of items. | ||
128 | # progression items do not have any true connection to the rooms that they | ||
129 | # are defined in, but it is best to place them in a thematically appropriate | ||
130 | # room. The key for a progression entry is the name of the item that will be | ||
131 | # created. A progression entry is a dictionary with one or both of a "doors" | ||
132 | # key and a "panel_doors" key. These fields should be lists of doors or | ||
133 | # panel doors that will be contained in this progressive item. | ||
134 | # | ||
108 | # sunwarps is an array of sunwarps in the room. This is used for sunwarp | 135 | # sunwarps is an array of sunwarps in the room. This is used for sunwarp |
109 | # shuffling. | 136 | # shuffling. |
110 | # - dots: The number of dots on this sunwarp. | 137 | # - dots: The number of dots on this sunwarp. |
@@ -193,6 +220,10 @@ | |||
193 | panel: RACECAR (Black) | 220 | panel: RACECAR (Black) |
194 | - room: The Tenacious | 221 | - room: The Tenacious |
195 | panel: SOLOS (Black) | 222 | panel: SOLOS (Black) |
223 | panel_doors: | ||
224 | HIDDEN: | ||
225 | panels: | ||
226 | - HIDDEN | ||
196 | paintings: | 227 | paintings: |
197 | - id: arrows_painting | 228 | - id: arrows_painting |
198 | exit_only: True | 229 | exit_only: True |
@@ -303,6 +334,10 @@ | |||
303 | panel: SOLOS (Black) | 334 | panel: SOLOS (Black) |
304 | - room: Hub Room | 335 | - room: Hub Room |
305 | panel: RAT | 336 | panel: RAT |
337 | panel_doors: | ||
338 | OPEN: | ||
339 | panels: | ||
340 | - OPEN | ||
306 | paintings: | 341 | paintings: |
307 | - id: owl_painting | 342 | - id: owl_painting |
308 | orientation: north | 343 | orientation: north |
@@ -317,7 +352,13 @@ | |||
317 | panels: | 352 | panels: |
318 | Achievement: | 353 | Achievement: |
319 | id: Countdown Panels/Panel_seeker_seeker | 354 | id: Countdown Panels/Panel_seeker_seeker |
320 | required_room: Hidden Room | 355 | # The Seeker uniquely has the property that 1) it can be entered (through the Pilgrim Room) without opening the |
356 | # front door in panels mode door shuffle, and 2) the front door panel is part of the CDP. This necessitates this | ||
357 | # required_panel clause, because the entrance panel needs to be solvable for the achievement even if an | ||
358 | # alternate entrance to the room is used. | ||
359 | required_panel: | ||
360 | room: Hidden Room | ||
361 | panel: OPEN | ||
321 | tag: forbid | 362 | tag: forbid |
322 | check: True | 363 | check: True |
323 | achievement: The Seeker | 364 | achievement: The Seeker |
@@ -537,6 +578,23 @@ | |||
537 | item_group: Achievement Room Entrances | 578 | item_group: Achievement Room Entrances |
538 | panels: | 579 | panels: |
539 | - OPEN | 580 | - OPEN |
581 | panel_doors: | ||
582 | ORDER: | ||
583 | panels: | ||
584 | - ORDER | ||
585 | SLAUGHTER: | ||
586 | panel_group: Tenacious Entrance Panels | ||
587 | panels: | ||
588 | - SLAUGHTER | ||
589 | TRACE: | ||
590 | panels: | ||
591 | - TRACE | ||
592 | RAT: | ||
593 | panels: | ||
594 | - RAT | ||
595 | OPEN: | ||
596 | panels: | ||
597 | - OPEN | ||
540 | paintings: | 598 | paintings: |
541 | - id: maze_painting | 599 | - id: maze_painting |
542 | orientation: west | 600 | orientation: west |
@@ -608,12 +666,13 @@ | |||
608 | item_name: "6 Sunwarp" | 666 | item_name: "6 Sunwarp" |
609 | progression: | 667 | progression: |
610 | Progressive Pilgrimage: | 668 | Progressive Pilgrimage: |
611 | - 1 Sunwarp | 669 | doors: |
612 | - 2 Sunwarp | 670 | - 1 Sunwarp |
613 | - 3 Sunwarp | 671 | - 2 Sunwarp |
614 | - 4 Sunwarp | 672 | - 3 Sunwarp |
615 | - 5 Sunwarp | 673 | - 4 Sunwarp |
616 | - 6 Sunwarp | 674 | - 5 Sunwarp |
675 | - 6 Sunwarp | ||
617 | Pilgrim Antechamber: | 676 | Pilgrim Antechamber: |
618 | # The entrances to this room are special. When pilgrimage is enabled, we use a special access rule to determine | 677 | # The entrances to this room are special. When pilgrimage is enabled, we use a special access rule to determine |
619 | # whether a pilgrimage can succeed. When pilgrimage is disabled, the sun painting will be added to the pool. | 678 | # whether a pilgrimage can succeed. When pilgrimage is disabled, the sun painting will be added to the pool. |
@@ -881,6 +940,24 @@ | |||
881 | panel: READS + RUST | 940 | panel: READS + RUST |
882 | - room: Ending Area | 941 | - room: Ending Area |
883 | panel: THE END | 942 | panel: THE END |
943 | panel_doors: | ||
944 | DECAY: | ||
945 | panel_group: Tenacious Entrance Panels | ||
946 | panels: | ||
947 | - DECAY | ||
948 | NOPE: | ||
949 | panels: | ||
950 | - NOPE | ||
951 | WE ROT: | ||
952 | panels: | ||
953 | - WE ROT | ||
954 | WORDS SWORD: | ||
955 | panels: | ||
956 | - WORDS | ||
957 | - SWORD | ||
958 | BEND HI: | ||
959 | panels: | ||
960 | - BEND HI | ||
884 | paintings: | 961 | paintings: |
885 | - id: eye_painting | 962 | - id: eye_painting |
886 | disable: True | 963 | disable: True |
@@ -895,6 +972,14 @@ | |||
895 | direction: exit | 972 | direction: exit |
896 | entrance_indicator_pos: [ -17, 2.5, -41.01 ] | 973 | entrance_indicator_pos: [ -17, 2.5, -41.01 ] |
897 | orientation: north | 974 | orientation: north |
975 | progression: | ||
976 | Progressive Suits Area: | ||
977 | panel_doors: | ||
978 | - WORDS SWORD | ||
979 | - room: Lost Area | ||
980 | panel_door: LOST | ||
981 | - room: Amen Name Area | ||
982 | panel_door: AMEN NAME | ||
898 | Lost Area: | 983 | Lost Area: |
899 | entrances: | 984 | entrances: |
900 | Outside The Agreeable: | 985 | Outside The Agreeable: |
@@ -920,6 +1005,11 @@ | |||
920 | panels: | 1005 | panels: |
921 | - LOST (1) | 1006 | - LOST (1) |
922 | - LOST (2) | 1007 | - LOST (2) |
1008 | panel_doors: | ||
1009 | LOST: | ||
1010 | panels: | ||
1011 | - LOST (1) | ||
1012 | - LOST (2) | ||
923 | Amen Name Area: | 1013 | Amen Name Area: |
924 | entrances: | 1014 | entrances: |
925 | Crossroads: | 1015 | Crossroads: |
@@ -953,6 +1043,11 @@ | |||
953 | panels: | 1043 | panels: |
954 | - AMEN | 1044 | - AMEN |
955 | - NAME | 1045 | - NAME |
1046 | panel_doors: | ||
1047 | AMEN NAME: | ||
1048 | panels: | ||
1049 | - AMEN | ||
1050 | - NAME | ||
956 | Suits Area: | 1051 | Suits Area: |
957 | entrances: | 1052 | entrances: |
958 | Amen Name Area: | 1053 | Amen Name Area: |
@@ -1056,6 +1151,13 @@ | |||
1056 | - LEVEL (White) | 1151 | - LEVEL (White) |
1057 | - RACECAR (White) | 1152 | - RACECAR (White) |
1058 | - SOLOS (White) | 1153 | - SOLOS (White) |
1154 | panel_doors: | ||
1155 | Black Palindromes: | ||
1156 | item_name: The Tenacious - Black Palindromes (Panels) | ||
1157 | panels: | ||
1158 | - LEVEL (Black) | ||
1159 | - RACECAR (Black) | ||
1160 | - SOLOS (Black) | ||
1059 | Near Far Area: | 1161 | Near Far Area: |
1060 | entrances: | 1162 | entrances: |
1061 | Hub Room: True | 1163 | Hub Room: True |
@@ -1081,6 +1183,21 @@ | |||
1081 | panels: | 1183 | panels: |
1082 | - NEAR | 1184 | - NEAR |
1083 | - FAR | 1185 | - FAR |
1186 | panel_doors: | ||
1187 | NEAR FAR: | ||
1188 | item_name: Symmetry Room - NEAR, FAR (Panels) | ||
1189 | panel_group: Symmetry Room Panels | ||
1190 | panels: | ||
1191 | - NEAR | ||
1192 | - FAR | ||
1193 | progression: | ||
1194 | Progressive Symmetry Room: | ||
1195 | panel_doors: | ||
1196 | - NEAR FAR | ||
1197 | - room: Warts Straw Area | ||
1198 | panel_door: WARTS STRAW | ||
1199 | - room: Leaf Feel Area | ||
1200 | panel_door: LEAF FEEL | ||
1084 | Warts Straw Area: | 1201 | Warts Straw Area: |
1085 | entrances: | 1202 | entrances: |
1086 | Near Far Area: | 1203 | Near Far Area: |
@@ -1108,6 +1225,13 @@ | |||
1108 | panels: | 1225 | panels: |
1109 | - WARTS | 1226 | - WARTS |
1110 | - STRAW | 1227 | - STRAW |
1228 | panel_doors: | ||
1229 | WARTS STRAW: | ||
1230 | item_name: Symmetry Room - WARTS, STRAW (Panels) | ||
1231 | panel_group: Symmetry Room Panels | ||
1232 | panels: | ||
1233 | - WARTS | ||
1234 | - STRAW | ||
1111 | Leaf Feel Area: | 1235 | Leaf Feel Area: |
1112 | entrances: | 1236 | entrances: |
1113 | Warts Straw Area: | 1237 | Warts Straw Area: |
@@ -1135,6 +1259,13 @@ | |||
1135 | panels: | 1259 | panels: |
1136 | - LEAF | 1260 | - LEAF |
1137 | - FEEL | 1261 | - FEEL |
1262 | panel_doors: | ||
1263 | LEAF FEEL: | ||
1264 | item_name: Symmetry Room - LEAF, FEEL (Panels) | ||
1265 | panel_group: Symmetry Room Panels | ||
1266 | panels: | ||
1267 | - LEAF | ||
1268 | - FEEL | ||
1138 | Outside The Agreeable: | 1269 | Outside The Agreeable: |
1139 | entrances: | 1270 | entrances: |
1140 | Crossroads: | 1271 | Crossroads: |
@@ -1243,6 +1374,20 @@ | |||
1243 | panels: | 1374 | panels: |
1244 | - room: Color Hunt | 1375 | - room: Color Hunt |
1245 | panel: PURPLE | 1376 | panel: PURPLE |
1377 | panel_doors: | ||
1378 | MASSACRED: | ||
1379 | panel_group: Tenacious Entrance Panels | ||
1380 | panels: | ||
1381 | - MASSACRED | ||
1382 | BLACK: | ||
1383 | panels: | ||
1384 | - BLACK | ||
1385 | CLOSE: | ||
1386 | panels: | ||
1387 | - CLOSE | ||
1388 | RIGHT: | ||
1389 | panels: | ||
1390 | - RIGHT | ||
1246 | paintings: | 1391 | paintings: |
1247 | - id: eyes_yellow_painting | 1392 | - id: eyes_yellow_painting |
1248 | orientation: east | 1393 | orientation: east |
@@ -1294,6 +1439,14 @@ | |||
1294 | - WINTER | 1439 | - WINTER |
1295 | - DIAMONDS | 1440 | - DIAMONDS |
1296 | - FIRE | 1441 | - FIRE |
1442 | panel_doors: | ||
1443 | Lookout: | ||
1444 | item_name: Compass Room Panels | ||
1445 | panels: | ||
1446 | - NORTH | ||
1447 | - WINTER | ||
1448 | - DIAMONDS | ||
1449 | - FIRE | ||
1297 | paintings: | 1450 | paintings: |
1298 | - id: pencil_painting7 | 1451 | - id: pencil_painting7 |
1299 | orientation: north | 1452 | orientation: north |
@@ -1510,6 +1663,10 @@ | |||
1510 | - HIDE (3) | 1663 | - HIDE (3) |
1511 | - room: Outside The Agreeable | 1664 | - room: Outside The Agreeable |
1512 | panel: HIDE | 1665 | panel: HIDE |
1666 | panel_doors: | ||
1667 | DOWN: | ||
1668 | panels: | ||
1669 | - DOWN | ||
1513 | The Perceptive: | 1670 | The Perceptive: |
1514 | entrances: | 1671 | entrances: |
1515 | Starting Room: | 1672 | Starting Room: |
@@ -1531,6 +1688,10 @@ | |||
1531 | check: True | 1688 | check: True |
1532 | exclude_reduce: True | 1689 | exclude_reduce: True |
1533 | tag: botwhite | 1690 | tag: botwhite |
1691 | panel_doors: | ||
1692 | GAZE: | ||
1693 | panels: | ||
1694 | - GAZE | ||
1534 | paintings: | 1695 | paintings: |
1535 | - id: garden_painting_tower | 1696 | - id: garden_painting_tower |
1536 | orientation: north | 1697 | orientation: north |
@@ -1572,9 +1733,10 @@ | |||
1572 | - EAT | 1733 | - EAT |
1573 | progression: | 1734 | progression: |
1574 | Progressive Fearless: | 1735 | Progressive Fearless: |
1575 | - Second Floor | 1736 | doors: |
1576 | - room: The Fearless (Second Floor) | 1737 | - Second Floor |
1577 | door: Third Floor | 1738 | - room: The Fearless (Second Floor) |
1739 | door: Third Floor | ||
1578 | The Fearless (Second Floor): | 1740 | The Fearless (Second Floor): |
1579 | entrances: | 1741 | entrances: |
1580 | The Fearless (First Floor): | 1742 | The Fearless (First Floor): |
@@ -1669,6 +1831,10 @@ | |||
1669 | tag: forbid | 1831 | tag: forbid |
1670 | required_door: | 1832 | required_door: |
1671 | door: Stairs | 1833 | door: Stairs |
1834 | required_panel: | ||
1835 | - panel: FOUR (1) | ||
1836 | - panel: FOUR (2) | ||
1837 | - panel: SIX | ||
1672 | achievement: The Observant | 1838 | achievement: The Observant |
1673 | FOUR (1): | 1839 | FOUR (1): |
1674 | id: Look Room/Panel_four_back | 1840 | id: Look Room/Panel_four_back |
@@ -1782,6 +1948,16 @@ | |||
1782 | door_group: Observant Doors | 1948 | door_group: Observant Doors |
1783 | panels: | 1949 | panels: |
1784 | - SIX | 1950 | - SIX |
1951 | panel_doors: | ||
1952 | BACKSIDE: | ||
1953 | item_name: The Observant - Backside Entrance Panels | ||
1954 | panel_group: Backside Entrance Panels | ||
1955 | panels: | ||
1956 | - FOUR (1) | ||
1957 | - FOUR (2) | ||
1958 | STAIRS: | ||
1959 | panels: | ||
1960 | - SIX | ||
1785 | The Incomparable: | 1961 | The Incomparable: |
1786 | entrances: | 1962 | entrances: |
1787 | The Observant: | 1963 | The Observant: |
@@ -1798,9 +1974,12 @@ | |||
1798 | check: True | 1974 | check: True |
1799 | tag: forbid | 1975 | tag: forbid |
1800 | required_room: | 1976 | required_room: |
1801 | - Elements Area | ||
1802 | - Courtyard | ||
1803 | - Eight Room | 1977 | - Eight Room |
1978 | required_panel: | ||
1979 | - room: Courtyard | ||
1980 | panel: I | ||
1981 | - room: Elements Area | ||
1982 | panel: A | ||
1804 | achievement: The Incomparable | 1983 | achievement: The Incomparable |
1805 | A (One): | 1984 | A (One): |
1806 | id: Strand Room/Panel_blank_a | 1985 | id: Strand Room/Panel_blank_a |
@@ -1865,6 +2044,15 @@ | |||
1865 | panel: I | 2044 | panel: I |
1866 | - room: Elements Area | 2045 | - room: Elements Area |
1867 | panel: A | 2046 | panel: A |
2047 | panel_doors: | ||
2048 | Giant Sevens: | ||
2049 | item_name: Giant Seven Panels | ||
2050 | panels: | ||
2051 | - I (Seven) | ||
2052 | - room: Courtyard | ||
2053 | panel: I | ||
2054 | - room: Elements Area | ||
2055 | panel: A | ||
1868 | paintings: | 2056 | paintings: |
1869 | - id: crown_painting | 2057 | - id: crown_painting |
1870 | orientation: east | 2058 | orientation: east |
@@ -1972,14 +2160,31 @@ | |||
1972 | panel: DRAWL + RUNS | 2160 | panel: DRAWL + RUNS |
1973 | - room: Owl Hallway | 2161 | - room: Owl Hallway |
1974 | panel: READS + RUST | 2162 | panel: READS + RUST |
2163 | panel_doors: | ||
2164 | Access: | ||
2165 | item_name: Orange Tower Panels | ||
2166 | panels: | ||
2167 | - room: Orange Tower First Floor | ||
2168 | panel: DADS + ALE | ||
2169 | - room: Outside The Undeterred | ||
2170 | panel: ART + ART | ||
2171 | - room: Orange Tower Third Floor | ||
2172 | panel: DEER + WREN | ||
2173 | - room: Orange Tower Fourth Floor | ||
2174 | panel: LEARNS + UNSEW | ||
2175 | - room: Orange Tower Fifth Floor | ||
2176 | panel: DRAWL + RUNS | ||
2177 | - room: Owl Hallway | ||
2178 | panel: READS + RUST | ||
1975 | progression: | 2179 | progression: |
1976 | Progressive Orange Tower: | 2180 | Progressive Orange Tower: |
1977 | - Second Floor | 2181 | doors: |
1978 | - Third Floor | 2182 | - Second Floor |
1979 | - Fourth Floor | 2183 | - Third Floor |
1980 | - Fifth Floor | 2184 | - Fourth Floor |
1981 | - Sixth Floor | 2185 | - Fifth Floor |
1982 | - Seventh Floor | 2186 | - Sixth Floor |
2187 | - Seventh Floor | ||
1983 | Orange Tower First Floor: | 2188 | Orange Tower First Floor: |
1984 | entrances: | 2189 | entrances: |
1985 | Hub Room: | 2190 | Hub Room: |
@@ -2022,6 +2227,10 @@ | |||
2022 | - SALT | 2227 | - SALT |
2023 | - room: Directional Gallery | 2228 | - room: Directional Gallery |
2024 | panel: PEPPER | 2229 | panel: PEPPER |
2230 | panel_doors: | ||
2231 | SECRET: | ||
2232 | panels: | ||
2233 | - SECRET | ||
2025 | sunwarps: | 2234 | sunwarps: |
2026 | - dots: 4 | 2235 | - dots: 4 |
2027 | direction: enter | 2236 | direction: enter |
@@ -2174,6 +2383,10 @@ | |||
2174 | id: Shuffle Room Area Doors/Door_hotcrust_shortcuts | 2383 | id: Shuffle Room Area Doors/Door_hotcrust_shortcuts |
2175 | panels: | 2384 | panels: |
2176 | - HOT CRUSTS | 2385 | - HOT CRUSTS |
2386 | panel_doors: | ||
2387 | HOT CRUSTS: | ||
2388 | panels: | ||
2389 | - HOT CRUSTS | ||
2177 | sunwarps: | 2390 | sunwarps: |
2178 | - dots: 5 | 2391 | - dots: 5 |
2179 | direction: enter | 2392 | direction: enter |
@@ -2288,6 +2501,12 @@ | |||
2288 | panels: | 2501 | panels: |
2289 | - SIZE (Small) | 2502 | - SIZE (Small) |
2290 | - SIZE (Big) | 2503 | - SIZE (Big) |
2504 | panel_doors: | ||
2505 | SIZE: | ||
2506 | item_name: Orange Tower Fifth Floor - SIZE Panels | ||
2507 | panels: | ||
2508 | - SIZE (Small) | ||
2509 | - SIZE (Big) | ||
2291 | paintings: | 2510 | paintings: |
2292 | - id: hi_solved_painting3 | 2511 | - id: hi_solved_painting3 |
2293 | orientation: south | 2512 | orientation: south |
@@ -2631,6 +2850,15 @@ | |||
2631 | - SECOND | 2850 | - SECOND |
2632 | - THIRD | 2851 | - THIRD |
2633 | - FOURTH | 2852 | - FOURTH |
2853 | panel_doors: | ||
2854 | FIRST SECOND THIRD FOURTH: | ||
2855 | item_name: Courtyard - Ordinal Panels | ||
2856 | panel_group: Backside Entrance Panels | ||
2857 | panels: | ||
2858 | - FIRST | ||
2859 | - SECOND | ||
2860 | - THIRD | ||
2861 | - FOURTH | ||
2634 | The Colorful (White): | 2862 | The Colorful (White): |
2635 | entrances: | 2863 | entrances: |
2636 | Courtyard: True | 2864 | Courtyard: True |
@@ -2648,6 +2876,12 @@ | |||
2648 | location_name: The Colorful - White | 2876 | location_name: The Colorful - White |
2649 | panels: | 2877 | panels: |
2650 | - BEGIN | 2878 | - BEGIN |
2879 | panel_doors: | ||
2880 | BEGIN: | ||
2881 | item_name: The Colorful - BEGIN (Panel) | ||
2882 | panel_group: Colorful Panels | ||
2883 | panels: | ||
2884 | - BEGIN | ||
2651 | The Colorful (Black): | 2885 | The Colorful (Black): |
2652 | entrances: | 2886 | entrances: |
2653 | The Colorful (White): | 2887 | The Colorful (White): |
@@ -2668,6 +2902,12 @@ | |||
2668 | door_group: Colorful Doors | 2902 | door_group: Colorful Doors |
2669 | panels: | 2903 | panels: |
2670 | - FOUND | 2904 | - FOUND |
2905 | panel_doors: | ||
2906 | FOUND: | ||
2907 | item_name: The Colorful - FOUND (Panel) | ||
2908 | panel_group: Colorful Panels | ||
2909 | panels: | ||
2910 | - FOUND | ||
2671 | The Colorful (Red): | 2911 | The Colorful (Red): |
2672 | entrances: | 2912 | entrances: |
2673 | The Colorful (Black): | 2913 | The Colorful (Black): |
@@ -2688,6 +2928,12 @@ | |||
2688 | door_group: Colorful Doors | 2928 | door_group: Colorful Doors |
2689 | panels: | 2929 | panels: |
2690 | - LOAF | 2930 | - LOAF |
2931 | panel_doors: | ||
2932 | LOAF: | ||
2933 | item_name: The Colorful - LOAF (Panel) | ||
2934 | panel_group: Colorful Panels | ||
2935 | panels: | ||
2936 | - LOAF | ||
2691 | The Colorful (Yellow): | 2937 | The Colorful (Yellow): |
2692 | entrances: | 2938 | entrances: |
2693 | The Colorful (Red): | 2939 | The Colorful (Red): |
@@ -2708,6 +2954,12 @@ | |||
2708 | door_group: Colorful Doors | 2954 | door_group: Colorful Doors |
2709 | panels: | 2955 | panels: |
2710 | - CREAM | 2956 | - CREAM |
2957 | panel_doors: | ||
2958 | CREAM: | ||
2959 | item_name: The Colorful - CREAM (Panel) | ||
2960 | panel_group: Colorful Panels | ||
2961 | panels: | ||
2962 | - CREAM | ||
2711 | The Colorful (Blue): | 2963 | The Colorful (Blue): |
2712 | entrances: | 2964 | entrances: |
2713 | The Colorful (Yellow): | 2965 | The Colorful (Yellow): |
@@ -2728,6 +2980,12 @@ | |||
2728 | door_group: Colorful Doors | 2980 | door_group: Colorful Doors |
2729 | panels: | 2981 | panels: |
2730 | - SUN | 2982 | - SUN |
2983 | panel_doors: | ||
2984 | SUN: | ||
2985 | item_name: The Colorful - SUN (Panel) | ||
2986 | panel_group: Colorful Panels | ||
2987 | panels: | ||
2988 | - SUN | ||
2731 | The Colorful (Purple): | 2989 | The Colorful (Purple): |
2732 | entrances: | 2990 | entrances: |
2733 | The Colorful (Blue): | 2991 | The Colorful (Blue): |
@@ -2748,6 +3006,12 @@ | |||
2748 | door_group: Colorful Doors | 3006 | door_group: Colorful Doors |
2749 | panels: | 3007 | panels: |
2750 | - SPOON | 3008 | - SPOON |
3009 | panel_doors: | ||
3010 | SPOON: | ||
3011 | item_name: The Colorful - SPOON (Panel) | ||
3012 | panel_group: Colorful Panels | ||
3013 | panels: | ||
3014 | - SPOON | ||
2751 | The Colorful (Orange): | 3015 | The Colorful (Orange): |
2752 | entrances: | 3016 | entrances: |
2753 | The Colorful (Purple): | 3017 | The Colorful (Purple): |
@@ -2768,6 +3032,12 @@ | |||
2768 | door_group: Colorful Doors | 3032 | door_group: Colorful Doors |
2769 | panels: | 3033 | panels: |
2770 | - LETTERS | 3034 | - LETTERS |
3035 | panel_doors: | ||
3036 | LETTERS: | ||
3037 | item_name: The Colorful - LETTERS (Panel) | ||
3038 | panel_group: Colorful Panels | ||
3039 | panels: | ||
3040 | - LETTERS | ||
2771 | The Colorful (Green): | 3041 | The Colorful (Green): |
2772 | entrances: | 3042 | entrances: |
2773 | The Colorful (Orange): | 3043 | The Colorful (Orange): |
@@ -2788,6 +3058,12 @@ | |||
2788 | door_group: Colorful Doors | 3058 | door_group: Colorful Doors |
2789 | panels: | 3059 | panels: |
2790 | - WALLS | 3060 | - WALLS |
3061 | panel_doors: | ||
3062 | WALLS: | ||
3063 | item_name: The Colorful - WALLS (Panel) | ||
3064 | panel_group: Colorful Panels | ||
3065 | panels: | ||
3066 | - WALLS | ||
2791 | The Colorful (Brown): | 3067 | The Colorful (Brown): |
2792 | entrances: | 3068 | entrances: |
2793 | The Colorful (Green): | 3069 | The Colorful (Green): |
@@ -2808,6 +3084,12 @@ | |||
2808 | door_group: Colorful Doors | 3084 | door_group: Colorful Doors |
2809 | panels: | 3085 | panels: |
2810 | - IRON | 3086 | - IRON |
3087 | panel_doors: | ||
3088 | IRON: | ||
3089 | item_name: The Colorful - IRON (Panel) | ||
3090 | panel_group: Colorful Panels | ||
3091 | panels: | ||
3092 | - IRON | ||
2811 | The Colorful (Gray): | 3093 | The Colorful (Gray): |
2812 | entrances: | 3094 | entrances: |
2813 | The Colorful (Brown): | 3095 | The Colorful (Brown): |
@@ -2828,6 +3110,12 @@ | |||
2828 | door_group: Colorful Doors | 3110 | door_group: Colorful Doors |
2829 | panels: | 3111 | panels: |
2830 | - OBSTACLE | 3112 | - OBSTACLE |
3113 | panel_doors: | ||
3114 | OBSTACLE: | ||
3115 | item_name: The Colorful - OBSTACLE (Panel) | ||
3116 | panel_group: Colorful Panels | ||
3117 | panels: | ||
3118 | - OBSTACLE | ||
2831 | The Colorful: | 3119 | The Colorful: |
2832 | entrances: | 3120 | entrances: |
2833 | The Colorful (Gray): | 3121 | The Colorful (Gray): |
@@ -2866,26 +3154,48 @@ | |||
2866 | orientation: north | 3154 | orientation: north |
2867 | progression: | 3155 | progression: |
2868 | Progressive Colorful: | 3156 | Progressive Colorful: |
2869 | - room: The Colorful (White) | 3157 | doors: |
2870 | door: Progress Door | 3158 | - room: The Colorful (White) |
2871 | - room: The Colorful (Black) | 3159 | door: Progress Door |
2872 | door: Progress Door | 3160 | - room: The Colorful (Black) |
2873 | - room: The Colorful (Red) | 3161 | door: Progress Door |
2874 | door: Progress Door | 3162 | - room: The Colorful (Red) |
2875 | - room: The Colorful (Yellow) | 3163 | door: Progress Door |
2876 | door: Progress Door | 3164 | - room: The Colorful (Yellow) |
2877 | - room: The Colorful (Blue) | 3165 | door: Progress Door |
2878 | door: Progress Door | 3166 | - room: The Colorful (Blue) |
2879 | - room: The Colorful (Purple) | 3167 | door: Progress Door |
2880 | door: Progress Door | 3168 | - room: The Colorful (Purple) |
2881 | - room: The Colorful (Orange) | 3169 | door: Progress Door |
2882 | door: Progress Door | 3170 | - room: The Colorful (Orange) |
2883 | - room: The Colorful (Green) | 3171 | door: Progress Door |
2884 | door: Progress Door | 3172 | - room: The Colorful (Green) |
2885 | - room: The Colorful (Brown) | 3173 | door: Progress Door |
2886 | door: Progress Door | 3174 | - room: The Colorful (Brown) |
2887 | - room: The Colorful (Gray) | 3175 | door: Progress Door |
2888 | door: Progress Door | 3176 | - room: The Colorful (Gray) |
3177 | door: Progress Door | ||
3178 | panel_doors: | ||
3179 | - room: The Colorful (White) | ||
3180 | panel_door: BEGIN | ||
3181 | - room: The Colorful (Black) | ||
3182 | panel_door: FOUND | ||
3183 | - room: The Colorful (Red) | ||
3184 | panel_door: LOAF | ||
3185 | - room: The Colorful (Yellow) | ||
3186 | panel_door: CREAM | ||
3187 | - room: The Colorful (Blue) | ||
3188 | panel_door: SUN | ||
3189 | - room: The Colorful (Purple) | ||
3190 | panel_door: SPOON | ||
3191 | - room: The Colorful (Orange) | ||
3192 | panel_door: LETTERS | ||
3193 | - room: The Colorful (Green) | ||
3194 | panel_door: WALLS | ||
3195 | - room: The Colorful (Brown) | ||
3196 | panel_door: IRON | ||
3197 | - room: The Colorful (Gray) | ||
3198 | panel_door: OBSTACLE | ||
2889 | Welcome Back Area: | 3199 | Welcome Back Area: |
2890 | entrances: | 3200 | entrances: |
2891 | Starting Room: | 3201 | Starting Room: |
@@ -2958,6 +3268,10 @@ | |||
2958 | door_group: Hedge Maze Doors | 3268 | door_group: Hedge Maze Doors |
2959 | panels: | 3269 | panels: |
2960 | - STRAYS | 3270 | - STRAYS |
3271 | panel_doors: | ||
3272 | STRAYS: | ||
3273 | panels: | ||
3274 | - STRAYS | ||
2961 | paintings: | 3275 | paintings: |
2962 | - id: arrows_painting_8 | 3276 | - id: arrows_painting_8 |
2963 | orientation: south | 3277 | orientation: south |
@@ -3155,6 +3469,13 @@ | |||
3155 | panel: I | 3469 | panel: I |
3156 | - room: Elements Area | 3470 | - room: Elements Area |
3157 | panel: A | 3471 | panel: A |
3472 | panel_doors: | ||
3473 | UNCOVER: | ||
3474 | panels: | ||
3475 | - UNCOVER | ||
3476 | OXEN: | ||
3477 | panels: | ||
3478 | - OXEN | ||
3158 | paintings: | 3479 | paintings: |
3159 | - id: clock_painting_5 | 3480 | - id: clock_painting_5 |
3160 | orientation: east | 3481 | orientation: east |
@@ -3524,6 +3845,13 @@ | |||
3524 | - RISE (Sunrise) | 3845 | - RISE (Sunrise) |
3525 | - ZEN | 3846 | - ZEN |
3526 | - SON | 3847 | - SON |
3848 | panel_doors: | ||
3849 | UNOPEN: | ||
3850 | panels: | ||
3851 | - UNOPEN | ||
3852 | BEGIN: | ||
3853 | panels: | ||
3854 | - BEGIN | ||
3527 | paintings: | 3855 | paintings: |
3528 | - id: pencil_painting2 | 3856 | - id: pencil_painting2 |
3529 | orientation: west | 3857 | orientation: west |
@@ -3819,6 +4147,34 @@ | |||
3819 | item_group: Achievement Room Entrances | 4147 | item_group: Achievement Room Entrances |
3820 | panels: | 4148 | panels: |
3821 | - ZERO | 4149 | - ZERO |
4150 | panel_doors: | ||
4151 | ZERO: | ||
4152 | panels: | ||
4153 | - ZERO | ||
4154 | PEN: | ||
4155 | panels: | ||
4156 | - PEN | ||
4157 | TWO: | ||
4158 | item_name: Two Panels | ||
4159 | panels: | ||
4160 | - TWO (1) | ||
4161 | - TWO (2) | ||
4162 | THREE: | ||
4163 | item_name: Three Panels | ||
4164 | panels: | ||
4165 | - THREE (1) | ||
4166 | - THREE (2) | ||
4167 | - THREE (3) | ||
4168 | FOUR: | ||
4169 | item_name: Four Panels | ||
4170 | panels: | ||
4171 | - FOUR | ||
4172 | - room: Hub Room | ||
4173 | panel: FOUR | ||
4174 | - room: Dead End Area | ||
4175 | panel: FOUR | ||
4176 | - room: The Traveled | ||
4177 | panel: FOUR | ||
3822 | paintings: | 4178 | paintings: |
3823 | - id: maze_painting_3 | 4179 | - id: maze_painting_3 |
3824 | enter_only: True | 4180 | enter_only: True |
@@ -3994,6 +4350,10 @@ | |||
3994 | panel: FIVE (1) | 4350 | panel: FIVE (1) |
3995 | - room: Directional Gallery | 4351 | - room: Directional Gallery |
3996 | panel: FIVE (2) | 4352 | panel: FIVE (2) |
4353 | First Six: | ||
4354 | event: True | ||
4355 | panels: | ||
4356 | - SIX | ||
3997 | Sevens: | 4357 | Sevens: |
3998 | id: | 4358 | id: |
3999 | - Count Up Room Area Doors/Door_seven_hider | 4359 | - Count Up Room Area Doors/Door_seven_hider |
@@ -4102,12 +4462,109 @@ | |||
4102 | panel: NINE | 4462 | panel: NINE |
4103 | - room: Elements Area | 4463 | - room: Elements Area |
4104 | panel: NINE | 4464 | panel: NINE |
4465 | panel_doors: | ||
4466 | FIVE: | ||
4467 | item_name: Five Panels | ||
4468 | panels: | ||
4469 | - FIVE | ||
4470 | - room: Outside The Agreeable | ||
4471 | panel: FIVE (1) | ||
4472 | - room: Outside The Agreeable | ||
4473 | panel: FIVE (2) | ||
4474 | - room: Directional Gallery | ||
4475 | panel: FIVE (1) | ||
4476 | - room: Directional Gallery | ||
4477 | panel: FIVE (2) | ||
4478 | SIX: | ||
4479 | item_name: Six Panels | ||
4480 | panels: | ||
4481 | - SIX | ||
4482 | - room: Outside The Bold | ||
4483 | panel: SIX | ||
4484 | - room: Directional Gallery | ||
4485 | panel: SIX (1) | ||
4486 | - room: Directional Gallery | ||
4487 | panel: SIX (2) | ||
4488 | - room: The Bearer (East) | ||
4489 | panel: SIX | ||
4490 | - room: The Bearer (South) | ||
4491 | panel: SIX | ||
4492 | SEVEN: | ||
4493 | item_name: Seven Panels | ||
4494 | panels: | ||
4495 | - SEVEN | ||
4496 | - room: Directional Gallery | ||
4497 | panel: SEVEN | ||
4498 | - room: Knight Night Exit | ||
4499 | panel: SEVEN (1) | ||
4500 | - room: Knight Night Exit | ||
4501 | panel: SEVEN (2) | ||
4502 | - room: Knight Night Exit | ||
4503 | panel: SEVEN (3) | ||
4504 | - room: Outside The Initiated | ||
4505 | panel: SEVEN (1) | ||
4506 | - room: Outside The Initiated | ||
4507 | panel: SEVEN (2) | ||
4508 | EIGHT: | ||
4509 | item_name: Eight Panels | ||
4510 | panels: | ||
4511 | - EIGHT | ||
4512 | - room: Directional Gallery | ||
4513 | panel: EIGHT | ||
4514 | - room: The Eyes They See | ||
4515 | panel: EIGHT | ||
4516 | - room: Dead End Area | ||
4517 | panel: EIGHT | ||
4518 | - room: Crossroads | ||
4519 | panel: EIGHT | ||
4520 | - room: Hot Crusts Area | ||
4521 | panel: EIGHT | ||
4522 | - room: Art Gallery | ||
4523 | panel: EIGHT | ||
4524 | - room: Outside The Initiated | ||
4525 | panel: EIGHT | ||
4526 | NINE: | ||
4527 | item_name: Nine Panels | ||
4528 | panels: | ||
4529 | - NINE | ||
4530 | - room: Directional Gallery | ||
4531 | panel: NINE | ||
4532 | - room: Amen Name Area | ||
4533 | panel: NINE | ||
4534 | - room: Yellow Backside Area | ||
4535 | panel: NINE | ||
4536 | - room: Outside The Initiated | ||
4537 | panel: NINE | ||
4538 | - room: Outside The Bold | ||
4539 | panel: NINE | ||
4540 | - room: Rhyme Room (Cross) | ||
4541 | panel: NINE | ||
4542 | - room: Orange Tower Fifth Floor | ||
4543 | panel: NINE | ||
4544 | - room: Elements Area | ||
4545 | panel: NINE | ||
4105 | paintings: | 4546 | paintings: |
4106 | - id: smile_painting_5 | 4547 | - id: smile_painting_5 |
4107 | enter_only: True | 4548 | enter_only: True |
4108 | orientation: east | 4549 | orientation: east |
4109 | required_door: | 4550 | required_door: |
4110 | door: Eights | 4551 | door: Eights |
4552 | progression: | ||
4553 | Progressive Number Hunt: | ||
4554 | panel_doors: | ||
4555 | - room: Outside The Undeterred | ||
4556 | panel_door: TWO | ||
4557 | - room: Outside The Undeterred | ||
4558 | panel_door: THREE | ||
4559 | - room: Outside The Undeterred | ||
4560 | panel_door: FOUR | ||
4561 | - FIVE | ||
4562 | - SIX | ||
4563 | - SEVEN | ||
4564 | - EIGHT | ||
4565 | - NINE | ||
4566 | - room: Outside The Undeterred | ||
4567 | panel_door: ZERO | ||
4111 | Directional Gallery: | 4568 | Directional Gallery: |
4112 | entrances: | 4569 | entrances: |
4113 | Outside The Agreeable: | 4570 | Outside The Agreeable: |
@@ -4195,7 +4652,7 @@ | |||
4195 | tag: midorange | 4652 | tag: midorange |
4196 | required_door: | 4653 | required_door: |
4197 | room: Number Hunt | 4654 | room: Number Hunt |
4198 | door: Sixes | 4655 | door: First Six |
4199 | PARANOID: | 4656 | PARANOID: |
4200 | id: Backside Room/Panel_paranoid_paranoid | 4657 | id: Backside Room/Panel_paranoid_paranoid |
4201 | tag: midwhite | 4658 | tag: midwhite |
@@ -4203,7 +4660,7 @@ | |||
4203 | exclude_reduce: True | 4660 | exclude_reduce: True |
4204 | required_door: | 4661 | required_door: |
4205 | room: Number Hunt | 4662 | room: Number Hunt |
4206 | door: Sixes | 4663 | door: First Six |
4207 | YELLOW: | 4664 | YELLOW: |
4208 | id: Color Arrow Room/Panel_yellow_afar | 4665 | id: Color Arrow Room/Panel_yellow_afar |
4209 | tag: midwhite | 4666 | tag: midwhite |
@@ -4266,6 +4723,11 @@ | |||
4266 | panels: | 4723 | panels: |
4267 | - room: Color Hunt | 4724 | - room: Color Hunt |
4268 | panel: YELLOW | 4725 | panel: YELLOW |
4726 | panel_doors: | ||
4727 | TURN LEARN: | ||
4728 | panels: | ||
4729 | - TURN | ||
4730 | - LEARN | ||
4269 | paintings: | 4731 | paintings: |
4270 | - id: smile_painting_7 | 4732 | - id: smile_painting_7 |
4271 | orientation: south | 4733 | orientation: south |
@@ -4277,7 +4739,7 @@ | |||
4277 | move: True | 4739 | move: True |
4278 | required_door: | 4740 | required_door: |
4279 | room: Number Hunt | 4741 | room: Number Hunt |
4280 | door: Sixes | 4742 | door: First Six |
4281 | - id: boxes_painting | 4743 | - id: boxes_painting |
4282 | orientation: south | 4744 | orientation: south |
4283 | - id: cherry_painting | 4745 | - id: cherry_painting |
@@ -4344,6 +4806,34 @@ | |||
4344 | id: Rock Room Doors/Door_hint | 4806 | id: Rock Room Doors/Door_hint |
4345 | panels: | 4807 | panels: |
4346 | - EXIT | 4808 | - EXIT |
4809 | panel_doors: | ||
4810 | EXIT: | ||
4811 | panels: | ||
4812 | - EXIT | ||
4813 | RED: | ||
4814 | panel_group: Color Hunt Panels | ||
4815 | panels: | ||
4816 | - RED | ||
4817 | BLUE: | ||
4818 | panel_group: Color Hunt Panels | ||
4819 | panels: | ||
4820 | - BLUE | ||
4821 | YELLOW: | ||
4822 | panel_group: Color Hunt Panels | ||
4823 | panels: | ||
4824 | - YELLOW | ||
4825 | ORANGE: | ||
4826 | panel_group: Color Hunt Panels | ||
4827 | panels: | ||
4828 | - ORANGE | ||
4829 | PURPLE: | ||
4830 | panel_group: Color Hunt Panels | ||
4831 | panels: | ||
4832 | - PURPLE | ||
4833 | GREEN: | ||
4834 | panel_group: Color Hunt Panels | ||
4835 | panels: | ||
4836 | - GREEN | ||
4347 | paintings: | 4837 | paintings: |
4348 | - id: arrows_painting_7 | 4838 | - id: arrows_painting_7 |
4349 | orientation: east | 4839 | orientation: east |
@@ -4481,6 +4971,14 @@ | |||
4481 | event: True | 4971 | event: True |
4482 | panels: | 4972 | panels: |
4483 | - HEART | 4973 | - HEART |
4974 | panel_doors: | ||
4975 | FARTHER: | ||
4976 | panel_group: Backside Entrance Panels | ||
4977 | panels: | ||
4978 | - FARTHER | ||
4979 | MIDDLE: | ||
4980 | panels: | ||
4981 | - MIDDLE | ||
4484 | The Bearer (East): | 4982 | The Bearer (East): |
4485 | entrances: | 4983 | entrances: |
4486 | Cross Tower (East): True | 4984 | Cross Tower (East): True |
@@ -5333,6 +5831,11 @@ | |||
5333 | item_name: Knight Night Room - Exit | 5831 | item_name: Knight Night Room - Exit |
5334 | panels: | 5832 | panels: |
5335 | - TRUSTED | 5833 | - TRUSTED |
5834 | panel_doors: | ||
5835 | TRUSTED: | ||
5836 | item_name: Knight Night Room - TRUSTED (Panel) | ||
5837 | panels: | ||
5838 | - TRUSTED | ||
5336 | Knight Night Exit: | 5839 | Knight Night Exit: |
5337 | entrances: | 5840 | entrances: |
5338 | Knight Night (Outer Ring): | 5841 | Knight Night (Outer Ring): |
@@ -6017,6 +6520,10 @@ | |||
6017 | item_group: Achievement Room Entrances | 6520 | item_group: Achievement Room Entrances |
6018 | panels: | 6521 | panels: |
6019 | - SHRINK | 6522 | - SHRINK |
6523 | panel_doors: | ||
6524 | SHRINK: | ||
6525 | panels: | ||
6526 | - SHRINK | ||
6020 | The Wondrous (Doorknob): | 6527 | The Wondrous (Doorknob): |
6021 | entrances: | 6528 | entrances: |
6022 | Outside The Wondrous: | 6529 | Outside The Wondrous: |
@@ -6228,18 +6735,36 @@ | |||
6228 | - KEEP | 6735 | - KEEP |
6229 | - BAILEY | 6736 | - BAILEY |
6230 | - TOWER | 6737 | - TOWER |
6738 | panel_doors: | ||
6739 | CASTLE: | ||
6740 | item_name: Hallway Room - First Room Panels | ||
6741 | panel_group: Hallway Room Panels | ||
6742 | panels: | ||
6743 | - WALL | ||
6744 | - KEEP | ||
6745 | - BAILEY | ||
6746 | - TOWER | ||
6231 | paintings: | 6747 | paintings: |
6232 | - id: panda_painting | 6748 | - id: panda_painting |
6233 | orientation: south | 6749 | orientation: south |
6234 | progression: | 6750 | progression: |
6235 | Progressive Hallway Room: | 6751 | Progressive Hallway Room: |
6236 | - Exit | 6752 | doors: |
6237 | - room: Hallway Room (2) | 6753 | - Exit |
6238 | door: Exit | 6754 | - room: Hallway Room (2) |
6239 | - room: Hallway Room (3) | 6755 | door: Exit |
6240 | door: Exit | 6756 | - room: Hallway Room (3) |
6241 | - room: Hallway Room (4) | 6757 | door: Exit |
6242 | door: Exit | 6758 | - room: Hallway Room (4) |
6759 | door: Exit | ||
6760 | panel_doors: | ||
6761 | - CASTLE | ||
6762 | - room: Hallway Room (2) | ||
6763 | panel_door: COUNTERCLOCKWISE | ||
6764 | - room: Hallway Room (3) | ||
6765 | panel_door: TRANSFORMATION | ||
6766 | - room: Hallway Room (4) | ||
6767 | panel_door: WHEELBARROW | ||
6243 | Hallway Room (2): | 6768 | Hallway Room (2): |
6244 | entrances: | 6769 | entrances: |
6245 | Hallway Room (1): | 6770 | Hallway Room (1): |
@@ -6278,6 +6803,15 @@ | |||
6278 | - CLOCK | 6803 | - CLOCK |
6279 | - ER | 6804 | - ER |
6280 | - COUNT | 6805 | - COUNT |
6806 | panel_doors: | ||
6807 | COUNTERCLOCKWISE: | ||
6808 | item_name: Hallway Room - Second Room Panels | ||
6809 | panel_group: Hallway Room Panels | ||
6810 | panels: | ||
6811 | - WISE | ||
6812 | - CLOCK | ||
6813 | - ER | ||
6814 | - COUNT | ||
6281 | Hallway Room (3): | 6815 | Hallway Room (3): |
6282 | entrances: | 6816 | entrances: |
6283 | Hallway Room (2): | 6817 | Hallway Room (2): |
@@ -6316,6 +6850,15 @@ | |||
6316 | - FORM | 6850 | - FORM |
6317 | - A | 6851 | - A |
6318 | - SHUN | 6852 | - SHUN |
6853 | panel_doors: | ||
6854 | TRANSFORMATION: | ||
6855 | item_name: Hallway Room - Third Room Panels | ||
6856 | panel_group: Hallway Room Panels | ||
6857 | panels: | ||
6858 | - TRANCE | ||
6859 | - FORM | ||
6860 | - A | ||
6861 | - SHUN | ||
6319 | Hallway Room (4): | 6862 | Hallway Room (4): |
6320 | entrances: | 6863 | entrances: |
6321 | Hallway Room (3): | 6864 | Hallway Room (3): |
@@ -6338,6 +6881,12 @@ | |||
6338 | panels: | 6881 | panels: |
6339 | - WHEEL | 6882 | - WHEEL |
6340 | include_reduce: True | 6883 | include_reduce: True |
6884 | panel_doors: | ||
6885 | WHEELBARROW: | ||
6886 | item_name: Hallway Room - WHEEL | ||
6887 | panel_group: Hallway Room Panels | ||
6888 | panels: | ||
6889 | - WHEEL | ||
6341 | Elements Area: | 6890 | Elements Area: |
6342 | entrances: | 6891 | entrances: |
6343 | Roof: True | 6892 | Roof: True |
@@ -6412,6 +6961,10 @@ | |||
6412 | panels: | 6961 | panels: |
6413 | - room: The Wanderer | 6962 | - room: The Wanderer |
6414 | panel: Achievement | 6963 | panel: Achievement |
6964 | panel_doors: | ||
6965 | WANDERLUST: | ||
6966 | panels: | ||
6967 | - WANDERLUST | ||
6415 | The Wanderer: | 6968 | The Wanderer: |
6416 | entrances: | 6969 | entrances: |
6417 | Outside The Wanderer: | 6970 | Outside The Wanderer: |
@@ -6553,6 +7106,10 @@ | |||
6553 | item_group: Achievement Room Entrances | 7106 | item_group: Achievement Room Entrances |
6554 | panels: | 7107 | panels: |
6555 | - ORDER | 7108 | - ORDER |
7109 | panel_doors: | ||
7110 | ORDER: | ||
7111 | panels: | ||
7112 | - ORDER | ||
6556 | paintings: | 7113 | paintings: |
6557 | - id: smile_painting_3 | 7114 | - id: smile_painting_3 |
6558 | orientation: west | 7115 | orientation: west |
@@ -6566,10 +7123,11 @@ | |||
6566 | orientation: south | 7123 | orientation: south |
6567 | progression: | 7124 | progression: |
6568 | Progressive Art Gallery: | 7125 | Progressive Art Gallery: |
6569 | - Second Floor | 7126 | doors: |
6570 | - Third Floor | 7127 | - Second Floor |
6571 | - Fourth Floor | 7128 | - Third Floor |
6572 | - Fifth Floor | 7129 | - Fourth Floor |
7130 | - Fifth Floor | ||
6573 | Art Gallery (Second Floor): | 7131 | Art Gallery (Second Floor): |
6574 | entrances: | 7132 | entrances: |
6575 | Art Gallery: | 7133 | Art Gallery: |
@@ -7281,8 +7839,8 @@ | |||
7281 | id: Panel Room/Panel_broomed_bedroom | 7839 | id: Panel Room/Panel_broomed_bedroom |
7282 | colors: yellow | 7840 | colors: yellow |
7283 | tag: midyellow | 7841 | tag: midyellow |
7284 | required_door: | 7842 | required_panel: |
7285 | door: Excavation | 7843 | panel: WALL (1) |
7286 | LAYS: | 7844 | LAYS: |
7287 | id: Panel Room/Panel_lays_maze | 7845 | id: Panel Room/Panel_lays_maze |
7288 | colors: purple | 7846 | colors: purple |
@@ -7309,13 +7867,24 @@ | |||
7309 | Excavation: | 7867 | Excavation: |
7310 | event: True | 7868 | event: True |
7311 | panels: | 7869 | panels: |
7312 | - WALL (1) | 7870 | - STAIRS |
7313 | Cellar Exit: | 7871 | Cellar Exit: |
7314 | id: | 7872 | id: |
7315 | - Tower Room Area Doors/Door_panel_basement | 7873 | - Tower Room Area Doors/Door_panel_basement |
7316 | - Tower Room Area Doors/Door_panel_basement2 | 7874 | - Tower Room Area Doors/Door_panel_basement2 |
7317 | panels: | 7875 | panels: |
7318 | - BASE | 7876 | - BASE |
7877 | panel_doors: | ||
7878 | STAIRS: | ||
7879 | panel_group: Room Room Panels | ||
7880 | panels: | ||
7881 | - STAIRS | ||
7882 | Colors: | ||
7883 | panel_group: Room Room Panels | ||
7884 | panels: | ||
7885 | - BROOMED | ||
7886 | - LAYS | ||
7887 | - BASE | ||
7319 | Cellar: | 7888 | Cellar: |
7320 | entrances: | 7889 | entrances: |
7321 | Room Room: | 7890 | Room Room: |
@@ -7354,6 +7923,11 @@ | |||
7354 | panels: | 7923 | panels: |
7355 | - KITTEN | 7924 | - KITTEN |
7356 | - CAT | 7925 | - CAT |
7926 | panel_doors: | ||
7927 | KITTEN CAT: | ||
7928 | panels: | ||
7929 | - KITTEN | ||
7930 | - CAT | ||
7357 | paintings: | 7931 | paintings: |
7358 | - id: arrows_painting_2 | 7932 | - id: arrows_painting_2 |
7359 | orientation: east | 7933 | orientation: east |
@@ -7608,6 +8182,10 @@ | |||
7608 | item_group: Achievement Room Entrances | 8182 | item_group: Achievement Room Entrances |
7609 | panels: | 8183 | panels: |
7610 | - OPEN | 8184 | - OPEN |
8185 | panel_doors: | ||
8186 | OPEN: | ||
8187 | panels: | ||
8188 | - OPEN | ||
7611 | The Scientific: | 8189 | The Scientific: |
7612 | entrances: | 8190 | entrances: |
7613 | Outside The Scientific: | 8191 | Outside The Scientific: |
diff --git a/data/generated.dat b/data/generated.dat index 4a751b2..d221b81 100644 --- a/data/generated.dat +++ b/data/generated.dat | |||
Binary files differ | |||
diff --git a/data/ids.yaml b/data/ids.yaml index c49a8df..b46f1d3 100644 --- a/data/ids.yaml +++ b/data/ids.yaml | |||
@@ -1478,3 +1478,145 @@ progression: | |||
1478 | Progressive Art Gallery: 444563 | 1478 | Progressive Art Gallery: 444563 |
1479 | Progressive Colorful: 444580 | 1479 | Progressive Colorful: 444580 |
1480 | Progressive Pilgrimage: 444583 | 1480 | Progressive Pilgrimage: 444583 |
1481 | Progressive Suits Area: 444602 | ||
1482 | Progressive Symmetry Room: 444608 | ||
1483 | Progressive Number Hunt: 444654 | ||
1484 | panel_doors: | ||
1485 | Starting Room: | ||
1486 | HIDDEN: 444589 | ||
1487 | Hidden Room: | ||
1488 | OPEN: 444590 | ||
1489 | Hub Room: | ||
1490 | ORDER: 444591 | ||
1491 | SLAUGHTER: 444592 | ||
1492 | TRACE: 444594 | ||
1493 | RAT: 444595 | ||
1494 | OPEN: 444596 | ||
1495 | Crossroads: | ||
1496 | DECAY: 444597 | ||
1497 | NOPE: 444598 | ||
1498 | WE ROT: 444599 | ||
1499 | WORDS SWORD: 444600 | ||
1500 | BEND HI: 444601 | ||
1501 | Lost Area: | ||
1502 | LOST: 444603 | ||
1503 | Amen Name Area: | ||
1504 | AMEN NAME: 444604 | ||
1505 | The Tenacious: | ||
1506 | Black Palindromes: 444605 | ||
1507 | Near Far Area: | ||
1508 | NEAR FAR: 444606 | ||
1509 | Warts Straw Area: | ||
1510 | WARTS STRAW: 444609 | ||
1511 | Leaf Feel Area: | ||
1512 | LEAF FEEL: 444610 | ||
1513 | Outside The Agreeable: | ||
1514 | MASSACRED: 444611 | ||
1515 | BLACK: 444612 | ||
1516 | CLOSE: 444613 | ||
1517 | RIGHT: 444614 | ||
1518 | Compass Room: | ||
1519 | Lookout: 444615 | ||
1520 | Hedge Maze: | ||
1521 | DOWN: 444617 | ||
1522 | The Perceptive: | ||
1523 | GAZE: 444618 | ||
1524 | The Observant: | ||
1525 | BACKSIDE: 444619 | ||
1526 | STAIRS: 444621 | ||
1527 | The Incomparable: | ||
1528 | Giant Sevens: 444622 | ||
1529 | Orange Tower: | ||
1530 | Access: 444623 | ||
1531 | Orange Tower First Floor: | ||
1532 | SECRET: 444624 | ||
1533 | Orange Tower Fourth Floor: | ||
1534 | HOT CRUSTS: 444625 | ||
1535 | Orange Tower Fifth Floor: | ||
1536 | SIZE: 444626 | ||
1537 | First Second Third Fourth: | ||
1538 | FIRST SECOND THIRD FOURTH: 444627 | ||
1539 | The Colorful (White): | ||
1540 | BEGIN: 444628 | ||
1541 | The Colorful (Black): | ||
1542 | FOUND: 444630 | ||
1543 | The Colorful (Red): | ||
1544 | LOAF: 444631 | ||
1545 | The Colorful (Yellow): | ||
1546 | CREAM: 444632 | ||
1547 | The Colorful (Blue): | ||
1548 | SUN: 444633 | ||
1549 | The Colorful (Purple): | ||
1550 | SPOON: 444634 | ||
1551 | The Colorful (Orange): | ||
1552 | LETTERS: 444635 | ||
1553 | The Colorful (Green): | ||
1554 | WALLS: 444636 | ||
1555 | The Colorful (Brown): | ||
1556 | IRON: 444637 | ||
1557 | The Colorful (Gray): | ||
1558 | OBSTACLE: 444638 | ||
1559 | Owl Hallway: | ||
1560 | STRAYS: 444639 | ||
1561 | Outside The Initiated: | ||
1562 | UNCOVER: 444640 | ||
1563 | OXEN: 444641 | ||
1564 | Outside The Bold: | ||
1565 | UNOPEN: 444642 | ||
1566 | BEGIN: 444643 | ||
1567 | Outside The Undeterred: | ||
1568 | ZERO: 444644 | ||
1569 | PEN: 444645 | ||
1570 | TWO: 444646 | ||
1571 | THREE: 444647 | ||
1572 | FOUR: 444648 | ||
1573 | Number Hunt: | ||
1574 | FIVE: 444649 | ||
1575 | SIX: 444650 | ||
1576 | SEVEN: 444651 | ||
1577 | EIGHT: 444652 | ||
1578 | NINE: 444653 | ||
1579 | Color Hunt: | ||
1580 | EXIT: 444655 | ||
1581 | RED: 444656 | ||
1582 | BLUE: 444658 | ||
1583 | YELLOW: 444659 | ||
1584 | ORANGE: 444660 | ||
1585 | PURPLE: 444661 | ||
1586 | GREEN: 444662 | ||
1587 | The Bearer: | ||
1588 | FARTHER: 444663 | ||
1589 | MIDDLE: 444664 | ||
1590 | Knight Night (Final): | ||
1591 | TRUSTED: 444665 | ||
1592 | Outside The Wondrous: | ||
1593 | SHRINK: 444666 | ||
1594 | Hallway Room (1): | ||
1595 | CASTLE: 444667 | ||
1596 | Hallway Room (2): | ||
1597 | COUNTERCLOCKWISE: 444669 | ||
1598 | Hallway Room (3): | ||
1599 | TRANSFORMATION: 444670 | ||
1600 | Hallway Room (4): | ||
1601 | WHEELBARROW: 444671 | ||
1602 | Outside The Wanderer: | ||
1603 | WANDERLUST: 444672 | ||
1604 | Art Gallery: | ||
1605 | ORDER: 444673 | ||
1606 | Room Room: | ||
1607 | STAIRS: 444674 | ||
1608 | Colors: 444676 | ||
1609 | Outside The Wise: | ||
1610 | KITTEN CAT: 444677 | ||
1611 | Outside The Scientific: | ||
1612 | OPEN: 444678 | ||
1613 | Directional Gallery: | ||
1614 | TURN LEARN: 444679 | ||
1615 | panel_groups: | ||
1616 | Tenacious Entrance Panels: 444593 | ||
1617 | Symmetry Room Panels: 444607 | ||
1618 | Backside Entrance Panels: 444620 | ||
1619 | Colorful Panels: 444629 | ||
1620 | Color Hunt Panels: 444657 | ||
1621 | Hallway Room Panels: 444668 | ||
1622 | Room Room Panels: 444675 | ||