summary refs log tree commit diff stats
path: root/LL1.yaml
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-24 12:11:34 -0500
committerGitHub <noreply@github.com>2023-11-24 18:11:34 +0100
commit9e57d690a3e8d337a6bbe45bec5a9449db64fd92 (patch)
tree7ef2e05643699f561cead117b9ed845d17640f8d /LL1.yaml
parent53d71ca90b092e311310589a2654313cd569e4fe (diff)
downloadlingo-apworld-9e57d690a3e8d337a6bbe45bec5a9449db64fd92.tar.gz
lingo-apworld-9e57d690a3e8d337a6bbe45bec5a9449db64fd92.tar.bz2
lingo-apworld-9e57d690a3e8d337a6bbe45bec5a9449db64fd92.zip
Lingo: Move datafiles into a subdirectory (#2459)
Diffstat (limited to 'LL1.yaml')
-rw-r--r--LL1.yaml7534
1 files changed, 0 insertions, 7534 deletions
diff --git a/LL1.yaml b/LL1.yaml deleted file mode 100644 index f8b07b8..0000000 --- a/LL1.yaml +++ /dev/null
@@ -1,7534 +0,0 @@
1---
2 # This file is an associative array where the keys are region names. Rooms
3 # have four properties: entrances, panels, doors, and paintings.
4 #
5 # 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
7 # of OR'd requirements for being able to access this room from the other one,
8 # although the list can be elided if there is only one requirement, and the
9 # value True can be used if there are no requirements (i.e. you always have
10 # access to this room if you have access to the other). Each requirement
11 # describes a door that must be opened in order to access this room from the
12 # other. The door is described by both the door's name and the name of the
13 # room that the door is in. The room name may be omitted if the door is
14 # located in the current room.
15 #
16 # panels is an 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:
18 # - 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
20 # also have access to this other room in order to solve this
21 # panel.
22 # - required_door: In addition to having access to this room, the player must
23 # also have this door opened in order to solve this panel.
24 # - required_panel: In addition to having access to this room, the player must
25 # also be able to access this other panel in order to solve
26 # this panel.
27 # - colors: A list of colors that are required to be unlocked in order
28 # to solve this panel
29 # - check: A location check will be created for this individual panel.
30 # - exclude_reduce: Panel checks are assumed to be INCLUDED when reduce checks
31 # is on. This option excludes the check anyway.
32 # - tag: Label that describes how panel randomization should be
33 # done. In reorder mode, panels with the same tag can be
34 # shuffled amongst themselves. "forbid" is a special value
35 # meaning that no randomization should be done. This field is
36 # mandatory.
37 # - link: Panels with the same link label are randomized as a group.
38 # - subtag: Used to identify the separate parts of a linked group.
39 # - copy_to_sign: When randomizing this panel, the hint should be copied to
40 # the specified sign(s).
41 # - achievement: The name of the achievement that is received upon solving
42 # this panel.
43 # - non_counting: If True, this panel does not contribute to the total needed
44 # to unlock Level 2.
45 #
46 # doors is an array of doors associated with this room. When door
47 # randomization is enabled, each of these is an item. The key is a name that
48 # will be displayed as part of the item's name. Doors can have the following
49 # fields:
50 # - id: A string or list of internal door IDs from the LINGO map.
51 # In door shuffle mode, collecting the item generated for
52 # this door will open the doors listed here.
53 # - painting_id: An internal ID of a painting that should be moved upon
54 # receiving this door.
55 # - panels: These are the panels that canonically open this door. If
56 # there is only one panel for the door, then that panel is a
57 # check. If there is more than one panel, then that entire
58 # set of panels must be solved for a check. Panels can
59 # either be a string (representing a panel in this room) or
60 # a dict containing "room" and "panel".
61 # - item_name: Overrides the name of the item generated for this door.
62 # If not specified, the item name will be generated from
63 # the room name and the door name.
64 # - location_name: Overrides the name of the location generated for this
65 # door. If not specified, the location name will be
66 # generated using the names of the panels.
67 # - skip_location: If true, no location is generated for this door.
68 # - skip_item: If true, no item is generated for this door.
69 # - group: When simple doors is used, all doors with the same group
70 # will be covered by a single item.
71 # - include_reduce: Door checks are assumed to be EXCLUDED when reduce checks
72 # is on. This option includes the check anyway.
73 # - junk_item: If on, the item for this door will be considered a junk
74 # item instead of a progression item. Only use this for
75 # doors that could never gate progression regardless of
76 # options and state.
77 # - event: Denotes that the door is event only. This is similar to
78 # setting both skip_location and skip_item.
79 #
80 # paintings is an array of paintings in the room. This is used for painting
81 # shuffling.
82 # - id: The internal painting ID from the LINGO map.
83 # - enter_only: If true, painting shuffling will not place a warp exit on
84 # this painting.
85 # - exit_only: If true, painting shuffling will not place a warp entrance
86 # on this painting.
87 # - orientation: One of north/south/east/west. This is the direction that
88 # the player is facing when they are interacting with it,
89 # not the orientation of the painting itself. "North" is
90 # the direction the player faces at a new game, with the
91 # positive X axis to the right.
92 # - required_door: This door must be open for the painting to be usable as an
93 # entrance. If required_door is set, enter_only must be
94 # True.
95 # - required: Marks a painting as being the only entrance for a room,
96 # and thus it is required to be an exit when randomized.
97 # Use "required_when_no_doors" instead if it would be
98 # possible to enter the room without the painting in door
99 # shuffle mode.
100 # - req_blocked: Marks that a painting cannot be an entrance leading to a
101 # required painting. Paintings within a room that has a
102 # required painting are automatically req blocked.
103 # Use "req_blocked_when_no_doors" instead if it would be
104 # fine in door shuffle mode.
105 # - move: Denotes that the painting is able to move.
106 Starting Room:
107 entrances:
108 Menu: True
109 panels:
110 HI:
111 id: Entry Room/Panel_hi_hi
112 tag: midwhite
113 HIDDEN:
114 id: Entry Room/Panel_hidden_hidden
115 tag: midwhite
116 TYPE:
117 id: Entry Room/Panel_type_type
118 tag: midwhite
119 THIS:
120 id: Entry Room/Panel_this_this
121 tag: midwhite
122 WRITE:
123 id: Entry Room/Panel_write_write
124 tag: midwhite
125 SAME:
126 id: Entry Room/Panel_same_same
127 tag: midwhite
128 doors:
129 Main Door:
130 event: True
131 panels:
132 - HI
133 Back Right Door:
134 id: Entry Room Area Doors/Door_hidden_hidden
135 include_reduce: True
136 panels:
137 - HIDDEN
138 Rhyme Room Entrance:
139 id:
140 - Palindrome Room Area Doors/Door_level_level_2
141 - Palindrome Room Area Doors/Door_racecar_racecar_2
142 - Palindrome Room Area Doors/Door_solos_solos_2
143 skip_location: True
144 group: Rhyme Room Doors
145 panels:
146 - room: The Tenacious
147 panel: LEVEL (Black)
148 - room: The Tenacious
149 panel: RACECAR (Black)
150 - room: The Tenacious
151 panel: SOLOS (Black)
152 paintings:
153 - id: arrows_painting
154 exit_only: True
155 orientation: south
156 - id: arrows_painting2
157 disable: True
158 move: True
159 - id: arrows_painting3
160 disable: True
161 move: True
162 - id: garden_painting_tower2
163 enter_only: True
164 orientation: north
165 move: True
166 required_door:
167 room: Hedge Maze
168 door: Painting Shortcut
169 - id: flower_painting_8
170 enter_only: True
171 orientation: north
172 move: True
173 required_door:
174 room: Courtyard
175 door: Painting Shortcut
176 - id: symmetry_painting_a_starter
177 enter_only: True
178 orientation: west
179 move: True
180 required_door:
181 room: The Wondrous (Doorknob)
182 door: Painting Shortcut
183 - id: pencil_painting6
184 enter_only: True
185 orientation: east
186 move: True
187 required_door:
188 room: Outside The Bold
189 door: Painting Shortcut
190 - id: blueman_painting_3
191 enter_only: True
192 orientation: east
193 move: True
194 required_door:
195 room: Outside The Undeterred
196 door: Painting Shortcut
197 - id: eyes_yellow_painting2
198 enter_only: True
199 orientation: west
200 move: True
201 required_door:
202 room: Outside The Agreeable
203 door: Painting Shortcut
204 Hidden Room:
205 entrances:
206 Starting Room:
207 room: Starting Room
208 door: Back Right Door
209 The Seeker:
210 door: Seeker Entrance
211 Dead End Area:
212 door: Dead End Door
213 Knight Night (Outer Ring):
214 door: Knight Night Entrance
215 panels:
216 DEAD END:
217 id: Appendix Room/Panel_deadend_deadened
218 check: True
219 exclude_reduce: True
220 tag: topwhite
221 OPEN:
222 id: Heteronym Room/Panel_entrance_entrance
223 tag: midwhite
224 LIES:
225 id: Appendix Room/Panel_lies_lies
226 tag: midwhite
227 doors:
228 Dead End Door:
229 id: Appendix Room Area Doors/Door_rat_tar_2
230 skip_location: true
231 group: Dead End Area Access
232 panels:
233 - room: Hub Room
234 panel: RAT
235 Knight Night Entrance:
236 id: Appendix Room Area Doors/Door_rat_tar_4
237 skip_location: true
238 panels:
239 - room: Hub Room
240 panel: RAT
241 Seeker Entrance:
242 id: Entry Room Area Doors/Door_entrance_entrance
243 item_name: The Seeker - Entrance
244 panels:
245 - OPEN
246 Rhyme Room Entrance:
247 id:
248 - Appendix Room Area Doors/Door_rat_tar_3
249 - Double Room Area Doors/Door_room_entry_stairs
250 skip_location: True
251 group: Rhyme Room Doors
252 panels:
253 - room: The Tenacious
254 panel: LEVEL (Black)
255 - room: The Tenacious
256 panel: RACECAR (Black)
257 - room: The Tenacious
258 panel: SOLOS (Black)
259 - room: Hub Room
260 panel: RAT
261 paintings:
262 - id: owl_painting
263 orientation: north
264 The Seeker:
265 entrances:
266 Hidden Room:
267 room: Hidden Room
268 door: Seeker Entrance
269 Pilgrim Room:
270 room: Pilgrim Room
271 door: Shortcut to The Seeker
272 panels:
273 Achievement:
274 id: Countdown Panels/Panel_seeker_seeker
275 required_room: Hidden Room
276 tag: forbid
277 check: True
278 achievement: The Seeker
279 BEAR:
280 id: Heteronym Room/Panel_bear_bear
281 tag: midwhite
282 MINE:
283 id: Heteronym Room/Panel_mine_mine
284 tag: double midwhite
285 subtag: left
286 link: exact MINE
287 MINE (2):
288 id: Heteronym Room/Panel_mine_mine_2
289 tag: double midwhite
290 subtag: right
291 link: exact MINE
292 BOW:
293 id: Heteronym Room/Panel_bow_bow
294 tag: midwhite
295 DOES:
296 id: Heteronym Room/Panel_does_does
297 tag: midwhite
298 MOBILE:
299 id: Heteronym Room/Panel_mobile_mobile
300 tag: double midwhite
301 subtag: left
302 link: exact MOBILE
303 MOBILE (2):
304 id: Heteronym Room/Panel_mobile_mobile_2
305 tag: double midwhite
306 subtag: right
307 link: exact MOBILE
308 DESERT:
309 id: Heteronym Room/Panel_desert_desert
310 tag: topmid white stack
311 subtag: mid
312 link: topmid DESERT
313 DESSERT:
314 id: Heteronym Room/Panel_desert_dessert
315 tag: topmid white stack
316 subtag: top
317 link: topmid DESERT
318 SOW:
319 id: Heteronym Room/Panel_sow_sow
320 tag: topmid white stack
321 subtag: mid
322 link: topmid SOW
323 SEW:
324 id: Heteronym Room/Panel_sow_so
325 tag: topmid white stack
326 subtag: top
327 link: topmid SOW
328 TO:
329 id: Heteronym Room/Panel_two_to
330 tag: double topwhite
331 subtag: left
332 link: hp TWO
333 TOO:
334 id: Heteronym Room/Panel_two_too
335 tag: double topwhite
336 subtag: right
337 link: hp TWO
338 WRITE:
339 id: Heteronym Room/Panel_write_right
340 tag: topwhite
341 EWE:
342 id: Heteronym Room/Panel_you_ewe
343 tag: topwhite
344 KNOT:
345 id: Heteronym Room/Panel_not_knot
346 tag: double topwhite
347 subtag: left
348 link: hp NOT
349 NAUGHT:
350 id: Heteronym Room/Panel_not_naught
351 tag: double topwhite
352 subtag: right
353 link: hp NOT
354 BEAR (2):
355 id: Heteronym Room/Panel_bear_bare
356 tag: topwhite
357 Second Room:
358 entrances:
359 Starting Room:
360 room: Starting Room
361 door: Main Door
362 Hub Room:
363 door: Exit Door
364 panels:
365 HI:
366 id: Entry Room/Panel_hi_high
367 tag: topwhite
368 LOW:
369 id: Entry Room/Panel_low_low
370 tag: forbid # This is a midwhite pretending to be a botwhite
371 ANOTHER TRY:
372 id: Entry Room/Panel_advance
373 tag: topwhite
374 LEVEL 2:
375 # We will set up special rules for this in code.
376 id: EndPanel/Panel_level_2
377 tag: forbid
378 non_counting: True
379 check: True
380 required_panel:
381 - panel: ANOTHER TRY
382 doors:
383 Exit Door:
384 id: Entry Room Area Doors/Door_hi_high
385 location_name: Second Room - Good Luck
386 include_reduce: True
387 panels:
388 - HI
389 - LOW
390 Hub Room:
391 entrances:
392 Second Room:
393 room: Second Room
394 door: Exit Door
395 Dead End Area:
396 door: Near RAT Door
397 Crossroads:
398 door: Crossroads Entrance
399 The Tenacious:
400 door: Tenacious Entrance
401 Warts Straw Area:
402 door: Symmetry Door
403 Hedge Maze:
404 door: Shortcut to Hedge Maze
405 Orange Tower First Floor:
406 room: Orange Tower First Floor
407 door: Shortcut to Hub Room
408 Owl Hallway:
409 painting: True
410 Outside The Initiated:
411 room: Outside The Initiated
412 door: Shortcut to Hub Room
413 The Traveled:
414 door: Traveled Entrance
415 Roof: True # through the sunwarp
416 Outside The Undeterred: # (NOTE: used in hardcoded pilgrimage)
417 room: Outside The Undeterred
418 door: Green Painting
419 painting: True
420 panels:
421 ORDER:
422 id: Shuffle Room/Panel_order_chaos
423 colors: black
424 tag: botblack
425 SLAUGHTER:
426 id: Palindrome Room/Panel_slaughter_laughter
427 colors: red
428 tag: midred
429 NEAR:
430 id: Symmetry Room/Panel_near_far
431 colors: black
432 tag: botblack
433 FAR:
434 id: Symmetry Room/Panel_far_near
435 colors: black
436 tag: botblack
437 TRACE:
438 id: Maze Room/Panel_trace_trace
439 tag: midwhite
440 RAT:
441 id: Appendix Room/Panel_rat_tar
442 colors: black
443 check: True
444 exclude_reduce: True
445 tag: midblack
446 OPEN:
447 id: Synonym Room/Panel_open_open
448 tag: midwhite
449 FOUR:
450 id: Backside Room/Panel_four_four_3
451 tag: midwhite
452 required_door:
453 room: Outside The Undeterred
454 door: Fours
455 LOST:
456 id: Shuffle Room/Panel_lost_found
457 colors: black
458 tag: botblack
459 FORWARD:
460 id: Entry Room/Panel_forward_forward
461 tag: midwhite
462 BETWEEN:
463 id: Entry Room/Panel_between_between
464 tag: midwhite
465 BACKWARD:
466 id: Entry Room/Panel_backward_backward
467 tag: midwhite
468 doors:
469 Crossroads Entrance:
470 id: Shuffle Room Area Doors/Door_chaos
471 panels:
472 - ORDER
473 Tenacious Entrance:
474 id: Palindrome Room Area Doors/Door_slaughter_laughter
475 group: Entrances to The Tenacious
476 panels:
477 - SLAUGHTER
478 Symmetry Door:
479 id:
480 - Symmetry Room Area Doors/Door_near_far
481 - Symmetry Room Area Doors/Door_far_near
482 group: Symmetry Doors
483 panels:
484 - NEAR
485 - FAR
486 Shortcut to Hedge Maze:
487 id: Maze Area Doors/Door_trace_trace
488 group: Hedge Maze Doors
489 panels:
490 - TRACE
491 Near RAT Door:
492 id: Appendix Room Area Doors/Door_deadend_deadened
493 skip_location: True
494 group: Dead End Area Access
495 panels:
496 - room: Hidden Room
497 panel: DEAD END
498 Traveled Entrance:
499 id: Appendix Room Area Doors/Door_open_open
500 item_name: The Traveled - Entrance
501 group: Entrance to The Traveled
502 panels:
503 - OPEN
504 Lost Door:
505 id: Shuffle Room Area Doors/Door_lost_found
506 junk_item: True
507 panels:
508 - LOST
509 paintings:
510 - id: maze_painting
511 orientation: west
512 Dead End Area:
513 entrances:
514 Hidden Room:
515 room: Hidden Room
516 door: Dead End Door
517 Hub Room:
518 room: Hub Room
519 door: Near RAT Door
520 panels:
521 FOUR:
522 id: Backside Room/Panel_four_four_2
523 tag: midwhite
524 required_door:
525 room: Outside The Undeterred
526 door: Fours
527 EIGHT:
528 id: Backside Room/Panel_eight_eight_8
529 tag: midwhite
530 required_door:
531 room: Number Hunt
532 door: Eights
533 paintings:
534 - id: smile_painting_6
535 orientation: north
536 Pilgrim Antechamber:
537 # Let's not shuffle the paintings yet.
538 entrances:
539 # The pilgrimage is hardcoded in rules.py
540 Starting Room:
541 door: Sun Painting
542 panels:
543 HOT CRUST:
544 id: Lingo Room/Panel_shortcut
545 colors: yellow
546 tag: midyellow
547 PILGRIMAGE:
548 id: Lingo Room/Panel_pilgrim
549 colors: blue
550 tag: midblue
551 MASTERY:
552 id: Master Room/Panel_mastery_mastery14
553 tag: midwhite
554 required_door:
555 room: Orange Tower Seventh Floor
556 door: Mastery
557 doors:
558 Sun Painting:
559 item_name: Pilgrim Room - Sun Painting
560 location_name: Pilgrim Room - HOT CRUST
561 painting_id: pilgrim_painting2
562 panels:
563 - HOT CRUST
564 Exit:
565 event: True
566 panels:
567 - PILGRIMAGE
568 Pilgrim Room:
569 entrances:
570 The Seeker:
571 door: Shortcut to The Seeker
572 Pilgrim Antechamber:
573 room: Pilgrim Antechamber
574 door: Exit
575 panels:
576 THIS:
577 id: Lingo Room/Panel_lingo_9
578 colors: gray
579 tag: forbid
580 TIME ROOM:
581 id: Lingo Room/Panel_lingo_1
582 colors: purple
583 tag: toppurp
584 SCIENCE ROOM:
585 id: Lingo Room/Panel_lingo_2
586 tag: botwhite
587 SHINY ROCK ROOM:
588 id: Lingo Room/Panel_lingo_3
589 tag: botwhite
590 ANGRY POWER:
591 id: Lingo Room/Panel_lingo_4
592 colors:
593 - purple
594 tag: forbid
595 MICRO LEGION:
596 id: Lingo Room/Panel_lingo_5
597 colors: yellow
598 tag: midyellow
599 LOSERS RELAX:
600 id: Lingo Room/Panel_lingo_6
601 colors:
602 - black
603 tag: forbid
604 "906234":
605 id: Lingo Room/Panel_lingo_7
606 colors:
607 - orange
608 - blue
609 tag: forbid
610 MOOR EMORDNILAP:
611 id: Lingo Room/Panel_lingo_8
612 colors: black
613 tag: midblack
614 HALL ROOMMATE:
615 id: Lingo Room/Panel_lingo_10
616 colors:
617 - red
618 - blue
619 tag: forbid
620 ALL GREY:
621 id: Lingo Room/Panel_lingo_11
622 colors: yellow
623 tag: midyellow
624 PLUNDER ISLAND:
625 id: Lingo Room/Panel_lingo_12
626 colors:
627 - purple
628 - red
629 tag: forbid
630 FLOSS PATHS:
631 id: Lingo Room/Panel_lingo_13
632 colors:
633 - purple
634 - brown
635 tag: forbid
636 doors:
637 Shortcut to The Seeker:
638 id: Master Room Doors/Door_pilgrim_shortcut
639 include_reduce: True
640 panels:
641 - THIS
642 Crossroads:
643 entrances:
644 Hub Room: True # The sunwarp means that we never need the ORDER door
645 Color Hallways: True
646 The Tenacious:
647 door: Tenacious Entrance
648 Orange Tower Fourth Floor: True # through IRK HORN
649 Amen Name Area:
650 room: Lost Area
651 door: Exit
652 Roof: True # through the sunwarp
653 panels:
654 DECAY:
655 id: Palindrome Room/Panel_decay_day
656 colors: red
657 tag: midred
658 NOPE:
659 id: Sun Room/Panel_nope_open
660 colors: yellow
661 tag: midyellow
662 EIGHT:
663 id: Backside Room/Panel_eight_eight_5
664 tag: midwhite
665 required_door:
666 room: Number Hunt
667 door: Eights
668 WE ROT:
669 id: Shuffle Room/Panel_tower
670 colors: yellow
671 tag: midyellow
672 WORDS:
673 id: Shuffle Room/Panel_words_sword
674 colors: yellow
675 tag: midyellow
676 SWORD:
677 id: Shuffle Room/Panel_sword_words
678 colors: yellow
679 tag: midyellow
680 TURN:
681 id: Shuffle Room/Panel_turn_runt
682 colors: yellow
683 tag: midyellow
684 BEND HI:
685 id: Shuffle Room/Panel_behind
686 colors: yellow
687 tag: midyellow
688 THE EYES:
689 id: Shuffle Room/Panel_eyes_see_shuffle
690 colors: yellow
691 check: True
692 exclude_reduce: True
693 required_door:
694 door: Hollow Hallway
695 tag: midyellow
696 CORNER:
697 id: Shuffle Room/Panel_corner_corner
698 required_door:
699 door: Hollow Hallway
700 tag: midwhite
701 HOLLOW:
702 id: Shuffle Room/Panel_hollow_hollow
703 required_door:
704 door: Hollow Hallway
705 tag: midwhite
706 SWAP:
707 id: Shuffle Room/Panel_swap_wasp
708 colors: yellow
709 tag: midyellow
710 GEL:
711 id: Shuffle Room/Panel_gel
712 colors: yellow
713 tag: topyellow
714 required_door:
715 door: Tower Entrance
716 THOUGH:
717 id: Shuffle Room/Panel_though
718 colors: yellow
719 tag: topyellow
720 required_door:
721 door: Tower Entrance
722 CROSSROADS:
723 id: Shuffle Room/Panel_crossroads_crossroads
724 tag: midwhite
725 doors:
726 Tenacious Entrance:
727 id: Palindrome Room Area Doors/Door_decay_day
728 group: Entrances to The Tenacious
729 panels:
730 - DECAY
731 Discerning Entrance:
732 id: Shuffle Room Area Doors/Door_nope_open
733 item_name: The Discerning - Entrance
734 panels:
735 - NOPE
736 Tower Entrance:
737 id:
738 - Shuffle Room Area Doors/Door_tower
739 - Shuffle Room Area Doors/Door_tower2
740 - Shuffle Room Area Doors/Door_tower3
741 - Shuffle Room Area Doors/Door_tower4
742 group: Crossroads - Tower Entrances
743 panels:
744 - WE ROT
745 Tower Back Entrance:
746 id: Shuffle Room Area Doors/Door_runt
747 location_name: Crossroads - TURN/RUNT
748 group: Crossroads - Tower Entrances
749 panels:
750 - TURN
751 - room: Orange Tower Fourth Floor
752 panel: RUNT
753 Words Sword Door:
754 id:
755 - Shuffle Room Area Doors/Door_words_shuffle_3
756 - Shuffle Room Area Doors/Door_words_shuffle_4
757 group: Crossroads Doors
758 panels:
759 - WORDS
760 - SWORD
761 Eye Wall:
762 id: Shuffle Room Area Doors/Door_behind
763 junk_item: True
764 group: Crossroads Doors
765 panels:
766 - BEND HI
767 Hollow Hallway:
768 id: Shuffle Room Area Doors/Door_crossroads6
769 skip_location: True
770 group: Crossroads Doors
771 panels:
772 - BEND HI
773 Roof Access:
774 id: Tower Room Area Doors/Door_level_6_2
775 skip_location: True
776 panels:
777 - room: Orange Tower First Floor
778 panel: DADS + ALE
779 - room: Outside The Undeterred
780 panel: ART + ART
781 - room: Orange Tower Third Floor
782 panel: DEER + WREN
783 - room: Orange Tower Fourth Floor
784 panel: LEARNS + UNSEW
785 - room: Orange Tower Fifth Floor
786 panel: DRAWL + RUNS
787 - room: Owl Hallway
788 panel: READS + RUST
789 paintings:
790 - id: eye_painting
791 disable: True
792 orientation: east
793 move: True
794 required_door:
795 door: Eye Wall
796 - id: smile_painting_4
797 orientation: south
798 Lost Area:
799 entrances:
800 Outside The Agreeable:
801 door: Exit
802 Crossroads:
803 room: Crossroads
804 door: Words Sword Door
805 panels:
806 LOST (1):
807 id: Shuffle Room/Panel_lost_lots
808 colors: yellow
809 tag: midyellow
810 LOST (2):
811 id: Shuffle Room/Panel_lost_slot
812 colors: yellow
813 tag: midyellow
814 doors:
815 Exit:
816 id:
817 - Shuffle Room Area Doors/Door_lost_shuffle_1
818 - Shuffle Room Area Doors/Door_lost_shuffle_2
819 location_name: Crossroads - LOST Pair
820 panels:
821 - LOST (1)
822 - LOST (2)
823 Amen Name Area:
824 entrances:
825 Crossroads:
826 room: Lost Area
827 door: Exit
828 Suits Area:
829 door: Exit
830 panels:
831 AMEN:
832 id: Shuffle Room/Panel_amen_mean
833 colors: yellow
834 tag: double midyellow
835 subtag: left
836 link: ana MEAN
837 NAME:
838 id: Shuffle Room/Panel_name_mean
839 colors: yellow
840 tag: double midyellow
841 subtag: right
842 link: ana MEAN
843 NINE:
844 id: Backside Room/Panel_nine_nine_3
845 tag: midwhite
846 required_door:
847 room: Number Hunt
848 door: Nines
849 doors:
850 Exit:
851 id: Shuffle Room Area Doors/Door_mean
852 panels:
853 - AMEN
854 - NAME
855 Suits Area:
856 entrances:
857 Amen Name Area:
858 room: Amen Name Area
859 door: Exit
860 Roof: True
861 panels:
862 SPADES:
863 id: Cross Room/Panel_spades_spades
864 tag: midwhite
865 CLUBS:
866 id: Cross Room/Panel_clubs_clubs
867 tag: midwhite
868 HEARTS:
869 id: Cross Room/Panel_hearts_hearts
870 tag: midwhite
871 paintings:
872 - id: west_afar
873 orientation: south
874 The Tenacious:
875 entrances:
876 Hub Room:
877 - room: Hub Room
878 door: Tenacious Entrance
879 - door: Shortcut to Hub Room
880 Crossroads:
881 room: Crossroads
882 door: Tenacious Entrance
883 Outside The Agreeable:
884 room: Outside The Agreeable
885 door: Tenacious Entrance
886 Dread Hallway:
887 room: Dread Hallway
888 door: Tenacious Entrance
889 panels:
890 LEVEL (Black):
891 id: Palindrome Room/Panel_level_level
892 colors: black
893 tag: midblack
894 RACECAR (Black):
895 id: Palindrome Room/Panel_racecar_racecar
896 colors: black
897 tag: palindrome
898 copy_to_sign: sign4
899 SOLOS (Black):
900 id: Palindrome Room/Panel_solos_solos
901 colors: black
902 tag: palindrome
903 copy_to_sign:
904 - sign5
905 - sign6
906 LEVEL (White):
907 id: Palindrome Room/Panel_level_level_2
908 tag: midwhite
909 RACECAR (White):
910 id: Palindrome Room/Panel_racecar_racecar_2
911 tag: midwhite
912 copy_to_sign: sign3
913 SOLOS (White):
914 id: Palindrome Room/Panel_solos_solos_2
915 tag: midwhite
916 copy_to_sign:
917 - sign1
918 - sign2
919 Achievement:
920 id: Countdown Panels/Panel_tenacious_tenacious
921 check: True
922 tag: forbid
923 required_panel:
924 - panel: LEVEL (Black)
925 - panel: RACECAR (Black)
926 - panel: SOLOS (Black)
927 - panel: LEVEL (White)
928 - panel: RACECAR (White)
929 - panel: SOLOS (White)
930 - room: Hub Room
931 panel: SLAUGHTER
932 - room: Crossroads
933 panel: DECAY
934 - room: Outside The Agreeable
935 panel: MASSACRED
936 - room: Dread Hallway
937 panel: DREAD
938 achievement: The Tenacious
939 doors:
940 Shortcut to Hub Room:
941 id:
942 - Palindrome Room Area Doors/Door_level_level_1
943 - Palindrome Room Area Doors/Door_racecar_racecar_1
944 - Palindrome Room Area Doors/Door_solos_solos_1
945 location_name: The Tenacious - Palindromes
946 group: Entrances to The Tenacious
947 panels:
948 - LEVEL (Black)
949 - RACECAR (Black)
950 - SOLOS (Black)
951 White Palindromes:
952 location_name: The Tenacious - White Palindromes
953 skip_item: True
954 panels:
955 - LEVEL (White)
956 - RACECAR (White)
957 - SOLOS (White)
958 Warts Straw Area:
959 entrances:
960 Hub Room:
961 room: Hub Room
962 door: Symmetry Door
963 Leaf Feel Area:
964 door: Door
965 panels:
966 WARTS:
967 id: Symmetry Room/Panel_warts_straw
968 colors: black
969 tag: midblack
970 STRAW:
971 id: Symmetry Room/Panel_straw_warts
972 colors: black
973 tag: midblack
974 doors:
975 Door:
976 id:
977 - Symmetry Room Area Doors/Door_warts_straw
978 - Symmetry Room Area Doors/Door_straw_warts
979 group: Symmetry Doors
980 panels:
981 - WARTS
982 - STRAW
983 Leaf Feel Area:
984 entrances:
985 Warts Straw Area:
986 room: Warts Straw Area
987 door: Door
988 Outside The Agreeable:
989 door: Door
990 panels:
991 LEAF:
992 id: Symmetry Room/Panel_leaf_feel
993 colors: black
994 tag: topblack
995 FEEL:
996 id: Symmetry Room/Panel_feel_leaf
997 colors: black
998 tag: topblack
999 doors:
1000 Door:
1001 id:
1002 - Symmetry Room Area Doors/Door_leaf_feel
1003 - Symmetry Room Area Doors/Door_feel_leaf
1004 group: Symmetry Doors
1005 panels:
1006 - LEAF
1007 - FEEL
1008 Outside The Agreeable:
1009 # Let's ignore the blue warp thing for now because the lookout is a dead
1010 # end. Later on it could be filler checks.
1011 entrances:
1012 # We don't have to list Lost Area because of Crossroads.
1013 Crossroads: True
1014 The Tenacious:
1015 door: Tenacious Entrance
1016 The Agreeable:
1017 door: Agreeable Entrance
1018 Dread Hallway:
1019 door: Black Door
1020 Leaf Feel Area:
1021 room: Leaf Feel Area
1022 door: Door
1023 Starting Room:
1024 door: Painting Shortcut
1025 painting: True
1026 Hallway Room (2): True
1027 Hallway Room (3): True
1028 Hallway Room (4): True
1029 Hedge Maze: True # through the door to the sectioned-off part of the hedge maze
1030 panels:
1031 MASSACRED:
1032 id: Palindrome Room/Panel_massacred_sacred
1033 colors: red
1034 tag: midred
1035 BLACK:
1036 id: Symmetry Room/Panel_black_white
1037 colors: black
1038 tag: botblack
1039 CLOSE:
1040 id: Antonym Room/Panel_close_open
1041 colors: black
1042 tag: botblack
1043 LEFT:
1044 id: Symmetry Room/Panel_left_right
1045 colors: black
1046 tag: botblack
1047 LEFT (2):
1048 id: Symmetry Room/Panel_left_wrong
1049 colors: black
1050 tag: bot black black
1051 RIGHT:
1052 id: Symmetry Room/Panel_right_left
1053 colors: black
1054 tag: botblack
1055 PURPLE:
1056 id: Color Arrow Room/Panel_purple_afar
1057 tag: midwhite
1058 required_door:
1059 door: Purple Barrier
1060 FIVE (1):
1061 id: Backside Room/Panel_five_five_5
1062 tag: midwhite
1063 required_door:
1064 room: Outside The Undeterred
1065 door: Fives
1066 FIVE (2):
1067 id: Backside Room/Panel_five_five_4
1068 tag: midwhite
1069 required_door:
1070 room: Outside The Undeterred
1071 door: Fives
1072 OUT:
1073 id: Hallway Room/Panel_out_out
1074 check: True
1075 exclude_reduce: True
1076 tag: midwhite
1077 HIDE:
1078 id: Maze Room/Panel_hide_seek_4
1079 colors: black
1080 tag: botblack
1081 DAZE:
1082 id: Maze Room/Panel_daze_maze
1083 colors: purple
1084 tag: midpurp
1085 WALL:
1086 id: Hallway Room/Panel_castle_1
1087 colors: blue
1088 tag: quad bot blue
1089 link: qbb CASTLE
1090 KEEP:
1091 id: Hallway Room/Panel_castle_2
1092 colors: blue
1093 tag: quad bot blue
1094 link: qbb CASTLE
1095 BAILEY:
1096 id: Hallway Room/Panel_castle_3
1097 colors: blue
1098 tag: quad bot blue
1099 link: qbb CASTLE
1100 TOWER:
1101 id: Hallway Room/Panel_castle_4
1102 colors: blue
1103 tag: quad bot blue
1104 link: qbb CASTLE
1105 NORTH:
1106 id: Cross Room/Panel_north_missing
1107 colors: green
1108 tag: forbid
1109 required_room: Outside The Bold
1110 DIAMONDS:
1111 id: Cross Room/Panel_diamonds_missing
1112 colors: green
1113 tag: forbid
1114 required_room: Suits Area
1115 FIRE:
1116 id: Cross Room/Panel_fire_missing
1117 colors: green
1118 tag: forbid
1119 required_room: Elements Area
1120 WINTER:
1121 id: Cross Room/Panel_winter_missing
1122 colors: green
1123 tag: forbid
1124 required_room: Orange Tower Fifth Floor
1125 doors:
1126 Tenacious Entrance:
1127 id: Palindrome Room Area Doors/Door_massacred_sacred
1128 group: Entrances to The Tenacious
1129 panels:
1130 - MASSACRED
1131 Black Door:
1132 id: Symmetry Room Area Doors/Door_black_white
1133 group: Entrances to The Tenacious
1134 panels:
1135 - BLACK
1136 Agreeable Entrance:
1137 id: Symmetry Room Area Doors/Door_close_open
1138 item_name: The Agreeable - Entrance
1139 panels:
1140 - CLOSE
1141 Painting Shortcut:
1142 item_name: Starting Room - Street Painting
1143 painting_id: eyes_yellow_painting2
1144 panels:
1145 - RIGHT
1146 Purple Barrier:
1147 id: Color Arrow Room Doors/Door_purple_3
1148 group: Color Hunt Barriers
1149 skip_location: True
1150 panels:
1151 - room: Champion's Rest
1152 panel: PURPLE
1153 Hallway Door:
1154 id: Red Blue Purple Room Area Doors/Door_room_2
1155 group: Hallway Room Doors
1156 location_name: Hallway Room - First Room
1157 panels:
1158 - WALL
1159 - KEEP
1160 - BAILEY
1161 - TOWER
1162 paintings:
1163 - id: panda_painting
1164 orientation: south
1165 - id: eyes_yellow_painting
1166 orientation: east
1167 progression:
1168 Progressive Hallway Room:
1169 - Hallway Door
1170 - room: Hallway Room (2)
1171 door: Exit
1172 - room: Hallway Room (3)
1173 door: Exit
1174 - room: Hallway Room (4)
1175 door: Exit
1176 Dread Hallway:
1177 entrances:
1178 Outside The Agreeable:
1179 room: Outside The Agreeable
1180 door: Black Door
1181 The Tenacious:
1182 door: Tenacious Entrance
1183 panels:
1184 DREAD:
1185 id: Palindrome Room/Panel_dread_dead
1186 colors: red
1187 tag: midred
1188 doors:
1189 Tenacious Entrance:
1190 id: Palindrome Room Area Doors/Door_dread_dead
1191 group: Entrances to The Tenacious
1192 panels:
1193 - DREAD
1194 The Agreeable:
1195 entrances:
1196 Outside The Agreeable:
1197 room: Outside The Agreeable
1198 door: Agreeable Entrance
1199 Hedge Maze:
1200 door: Shortcut to Hedge Maze
1201 panels:
1202 Achievement:
1203 id: Countdown Panels/Panel_disagreeable_agreeable
1204 colors: black
1205 tag: forbid
1206 required_room: Outside The Agreeable
1207 check: True
1208 achievement: The Agreeable
1209 BYE:
1210 id: Antonym Room/Panel_bye_hi
1211 colors: black
1212 tag: botblack
1213 RETOOL:
1214 id: Antonym Room/Panel_retool_looter
1215 colors: black
1216 tag: midblack
1217 DRAWER:
1218 id: Antonym Room/Panel_drawer_reward
1219 colors: black
1220 tag: midblack
1221 READ:
1222 id: Antonym Room/Panel_read_write
1223 colors: black
1224 tag: botblack
1225 DIFFERENT:
1226 id: Antonym Room/Panel_different_same
1227 colors: black
1228 tag: botblack
1229 LOW:
1230 id: Antonym Room/Panel_low_high
1231 colors: black
1232 tag: botblack
1233 ALIVE:
1234 id: Antonym Room/Panel_alive_dead
1235 colors: black
1236 tag: botblack
1237 THAT:
1238 id: Antonym Room/Panel_that_this
1239 colors: black
1240 tag: botblack
1241 STRESSED:
1242 id: Antonym Room/Panel_stressed_desserts
1243 colors: black
1244 tag: midblack
1245 STAR:
1246 id: Antonym Room/Panel_star_rats
1247 colors: black
1248 tag: midblack
1249 TAME:
1250 id: Antonym Room/Panel_tame_mate
1251 colors: black
1252 tag: topblack
1253 CAT:
1254 id: Antonym Room/Panel_cat_tack
1255 colors: black
1256 tag: topblack
1257 doors:
1258 Shortcut to Hedge Maze:
1259 id: Symmetry Room Area Doors/Door_bye_hi
1260 group: Hedge Maze Doors
1261 panels:
1262 - BYE
1263 Hedge Maze:
1264 entrances:
1265 Hub Room:
1266 room: Hub Room
1267 door: Shortcut to Hedge Maze
1268 Color Hallways: True
1269 The Agreeable:
1270 room: The Agreeable
1271 door: Shortcut to Hedge Maze
1272 The Perceptive: True
1273 The Observant:
1274 door: Observant Entrance
1275 Owl Hallway:
1276 room: Owl Hallway
1277 door: Shortcut to Hedge Maze
1278 Roof: True
1279 panels:
1280 DOWN:
1281 id: Maze Room/Panel_down_up
1282 colors: black
1283 tag: botblack
1284 HIDE (1):
1285 id: Maze Room/Panel_hide_seek
1286 colors: black
1287 tag: botblack
1288 HIDE (2):
1289 id: Maze Room/Panel_hide_seek_2
1290 colors: black
1291 tag: botblack
1292 HIDE (3):
1293 id: Maze Room/Panel_hide_seek_3
1294 colors: black
1295 tag: botblack
1296 MASTERY (1):
1297 id: Master Room/Panel_mastery_mastery5
1298 tag: midwhite
1299 required_door:
1300 room: Orange Tower Seventh Floor
1301 door: Mastery
1302 MASTERY (2):
1303 id: Master Room/Panel_mastery_mastery9
1304 tag: midwhite
1305 required_door:
1306 room: Orange Tower Seventh Floor
1307 door: Mastery
1308 PATH (1):
1309 id: Maze Room/Panel_path_lock
1310 colors: green
1311 tag: forbid
1312 PATH (2):
1313 id: Maze Room/Panel_path_knot
1314 colors: green
1315 tag: forbid
1316 PATH (3):
1317 id: Maze Room/Panel_path_lost
1318 colors: green
1319 tag: forbid
1320 PATH (4):
1321 id: Maze Room/Panel_path_open
1322 colors: green
1323 tag: forbid
1324 PATH (5):
1325 id: Maze Room/Panel_path_help
1326 colors: green
1327 tag: forbid
1328 PATH (6):
1329 id: Maze Room/Panel_path_hunt
1330 colors: green
1331 tag: forbid
1332 PATH (7):
1333 id: Maze Room/Panel_path_nest
1334 colors: green
1335 tag: forbid
1336 PATH (8):
1337 id: Maze Room/Panel_path_look
1338 colors: green
1339 tag: forbid
1340 REFLOW:
1341 id: Maze Room/Panel_reflow_flower
1342 colors: yellow
1343 tag: midyellow
1344 LEAP:
1345 id: Maze Room/Panel_leap_jump
1346 tag: botwhite
1347 doors:
1348 Perceptive Entrance:
1349 id: Maze Area Doors/Door_maze_maze
1350 item_name: The Perceptive - Entrance
1351 group: Hedge Maze Doors
1352 panels:
1353 - DOWN
1354 Painting Shortcut:
1355 painting_id: garden_painting_tower2
1356 item_name: Starting Room - Hedge Maze Painting
1357 skip_location: True
1358 panels:
1359 - DOWN
1360 Observant Entrance:
1361 id:
1362 - Maze Area Doors/Door_look_room_1
1363 - Maze Area Doors/Door_look_room_2
1364 - Maze Area Doors/Door_look_room_3
1365 skip_location: True
1366 item_name: The Observant - Entrance
1367 group: Observant Doors
1368 panels:
1369 - room: The Perceptive
1370 panel: GAZE
1371 Hide and Seek:
1372 skip_item: True
1373 location_name: Hedge Maze - Hide and Seek
1374 include_reduce: True
1375 panels:
1376 - HIDE (1)
1377 - HIDE (2)
1378 - HIDE (3)
1379 - room: Outside The Agreeable
1380 panel: HIDE
1381 The Perceptive:
1382 entrances:
1383 Starting Room:
1384 room: Hedge Maze
1385 door: Painting Shortcut
1386 painting: True
1387 Hedge Maze:
1388 room: Hedge Maze
1389 door: Perceptive Entrance
1390 panels:
1391 Achievement:
1392 id: Countdown Panels/Panel_perceptive_perceptive
1393 colors: green
1394 tag: forbid
1395 check: True
1396 achievement: The Perceptive
1397 GAZE:
1398 id: Maze Room/Panel_look_look
1399 check: True
1400 exclude_reduce: True
1401 tag: botwhite
1402 paintings:
1403 - id: garden_painting_tower
1404 orientation: north
1405 The Fearless (First Floor):
1406 entrances:
1407 The Perceptive: True
1408 panels:
1409 NAPS:
1410 id: Naps Room/Panel_naps_span
1411 colors: black
1412 tag: midblack
1413 TEAM:
1414 id: Naps Room/Panel_team_meet
1415 colors: black
1416 tag: topblack
1417 TEEM:
1418 id: Naps Room/Panel_teem_meat
1419 colors: black
1420 tag: topblack
1421 IMPATIENT:
1422 id: Naps Room/Panel_impatient_doctor
1423 colors: black
1424 tag: bot black black
1425 EAT:
1426 id: Naps Room/Panel_eat_tea
1427 colors: black
1428 tag: topblack
1429 doors:
1430 Second Floor:
1431 id: Naps Room Doors/Door_hider_5
1432 location_name: The Fearless - First Floor Puzzles
1433 group: Fearless Doors
1434 panels:
1435 - NAPS
1436 - TEAM
1437 - TEEM
1438 - IMPATIENT
1439 - EAT
1440 progression:
1441 Progressive Fearless:
1442 - Second Floor
1443 - room: The Fearless (Second Floor)
1444 door: Third Floor
1445 The Fearless (Second Floor):
1446 entrances:
1447 The Fearless (First Floor):
1448 room: The Fearless (First Floor)
1449 door: Second Floor
1450 panels:
1451 NONE:
1452 id: Naps Room/Panel_one_many
1453 colors: black
1454 tag: bot black top white
1455 SUM:
1456 id: Naps Room/Panel_one_none
1457 colors: black
1458 tag: top white bot black
1459 FUNNY:
1460 id: Naps Room/Panel_funny_enough
1461 colors: black
1462 tag: topblack
1463 MIGHT:
1464 id: Naps Room/Panel_might_time
1465 colors: black
1466 tag: topblack
1467 SAFE:
1468 id: Naps Room/Panel_safe_face
1469 colors: black
1470 tag: topblack
1471 SAME:
1472 id: Naps Room/Panel_same_mace
1473 colors: black
1474 tag: topblack
1475 CAME:
1476 id: Naps Room/Panel_came_make
1477 colors: black
1478 tag: topblack
1479 doors:
1480 Third Floor:
1481 id:
1482 - Naps Room Doors/Door_hider_1b2
1483 - Naps Room Doors/Door_hider_new1
1484 location_name: The Fearless - Second Floor Puzzles
1485 group: Fearless Doors
1486 panels:
1487 - NONE
1488 - SUM
1489 - FUNNY
1490 - MIGHT
1491 - SAFE
1492 - SAME
1493 - CAME
1494 The Fearless:
1495 entrances:
1496 The Fearless (First Floor):
1497 room: The Fearless (Second Floor)
1498 door: Third Floor
1499 panels:
1500 Achievement:
1501 id: Countdown Panels/Panel_fearless_fearless
1502 colors: black
1503 tag: forbid
1504 check: True
1505 achievement: The Fearless
1506 EASY:
1507 id: Naps Room/Panel_easy_soft
1508 colors: black
1509 tag: bot black black
1510 SOMETIMES:
1511 id: Naps Room/Panel_sometimes_always
1512 colors: black
1513 tag: bot black black
1514 DARK:
1515 id: Naps Room/Panel_dark_extinguish
1516 colors: black
1517 tag: bot black black
1518 EVEN:
1519 id: Naps Room/Panel_even_ordinary
1520 colors: black
1521 tag: bot black black
1522 The Observant:
1523 entrances:
1524 Hedge Maze:
1525 room: Hedge Maze
1526 door: Observant Entrance
1527 The Incomparable: True
1528 panels:
1529 Achievement:
1530 id: Countdown Panels/Panel_observant_observant
1531 colors: green
1532 check: True
1533 tag: forbid
1534 required_door:
1535 door: Stairs
1536 achievement: The Observant
1537 BACK:
1538 id: Look Room/Panel_four_back
1539 colors: green
1540 tag: forbid
1541 SIDE:
1542 id: Look Room/Panel_four_side
1543 colors: green
1544 tag: forbid
1545 BACKSIDE:
1546 id: Backside Room/Panel_backside_2
1547 tag: midwhite
1548 required_door:
1549 door: Backside Door
1550 STAIRS:
1551 id: Look Room/Panel_six_stairs
1552 colors: green
1553 tag: forbid
1554 WAYS:
1555 id: Look Room/Panel_four_ways
1556 colors: green
1557 tag: forbid
1558 "ON":
1559 id: Look Room/Panel_two_on
1560 colors: green
1561 tag: forbid
1562 UP:
1563 id: Look Room/Panel_two_up
1564 colors: green
1565 tag: forbid
1566 SWIMS:
1567 id: Look Room/Panel_five_swims
1568 colors: green
1569 tag: forbid
1570 UPSTAIRS:
1571 id: Look Room/Panel_eight_upstairs
1572 colors: green
1573 tag: forbid
1574 required_door:
1575 door: Stairs
1576 TOIL:
1577 id: Look Room/Panel_blue_toil
1578 colors: green
1579 tag: forbid
1580 required_door:
1581 door: Stairs
1582 STOP:
1583 id: Look Room/Panel_four_stop
1584 colors: green
1585 tag: forbid
1586 required_door:
1587 door: Stairs
1588 TOP:
1589 id: Look Room/Panel_aqua_top
1590 colors: green
1591 tag: forbid
1592 required_door:
1593 door: Stairs
1594 HI:
1595 id: Look Room/Panel_blue_hi
1596 colors: green
1597 tag: forbid
1598 required_door:
1599 door: Stairs
1600 HI (2):
1601 id: Look Room/Panel_blue_hi2
1602 colors: green
1603 tag: forbid
1604 required_door:
1605 door: Stairs
1606 "31":
1607 id: Look Room/Panel_numbers_31
1608 colors: green
1609 tag: forbid
1610 required_door:
1611 door: Stairs
1612 "52":
1613 id: Look Room/Panel_numbers_52
1614 colors: green
1615 tag: forbid
1616 required_door:
1617 door: Stairs
1618 OIL:
1619 id: Look Room/Panel_aqua_oil
1620 colors: green
1621 tag: forbid
1622 required_door:
1623 door: Stairs
1624 BACKSIDE (GREEN):
1625 id: Look Room/Panel_eight_backside
1626 colors: green
1627 tag: forbid
1628 required_door:
1629 door: Stairs
1630 SIDEWAYS:
1631 id: Look Room/Panel_eight_sideways
1632 colors: green
1633 tag: forbid
1634 required_door:
1635 door: Stairs
1636 doors:
1637 Backside Door:
1638 id: Maze Area Doors/Door_backside
1639 group: Backside Doors
1640 panels:
1641 - BACK
1642 - SIDE
1643 Stairs:
1644 id: Maze Area Doors/Door_stairs
1645 group: Observant Doors
1646 panels:
1647 - STAIRS
1648 The Incomparable:
1649 entrances:
1650 The Observant: True # Assuming that access to The Observant includes access to the right entrance
1651 Eight Room: True
1652 Eight Alcove:
1653 door: Eight Door
1654 Orange Tower Sixth Floor:
1655 painting: True
1656 panels:
1657 Achievement:
1658 id: Countdown Panels/Panel_incomparable_incomparable
1659 colors: blue
1660 check: True
1661 tag: forbid
1662 required_room:
1663 - Elements Area
1664 - Courtyard
1665 - Eight Room
1666 achievement: The Incomparable
1667 A (One):
1668 id: Strand Room/Panel_blank_a
1669 colors: blue
1670 tag: forbid
1671 A (Two):
1672 id: Strand Room/Panel_a_an
1673 colors: blue
1674 tag: forbid
1675 A (Three):
1676 id: Strand Room/Panel_a_and
1677 colors: blue
1678 tag: forbid
1679 A (Four):
1680 id: Strand Room/Panel_a_sand
1681 colors: blue
1682 tag: forbid
1683 A (Five):
1684 id: Strand Room/Panel_a_stand
1685 colors: blue
1686 tag: forbid
1687 A (Six):
1688 id: Strand Room/Panel_a_strand
1689 colors: blue
1690 tag: forbid
1691 I (One):
1692 id: Strand Room/Panel_blank_i
1693 colors: blue
1694 tag: forbid
1695 I (Two):
1696 id: Strand Room/Panel_i_in
1697 colors: blue
1698 tag: forbid
1699 I (Three):
1700 id: Strand Room/Panel_i_sin
1701 colors: blue
1702 tag: forbid
1703 I (Four):
1704 id: Strand Room/Panel_i_sing
1705 colors: blue
1706 tag: forbid
1707 I (Five):
1708 id: Strand Room/Panel_i_sting
1709 colors: blue
1710 tag: forbid
1711 I (Six):
1712 id: Strand Room/Panel_i_string
1713 colors: blue
1714 tag: forbid
1715 I (Seven):
1716 id: Strand Room/Panel_i_strings
1717 colors: blue
1718 tag: forbid
1719 doors:
1720 Eight Door:
1721 id: Red Blue Purple Room Area Doors/Door_a_strands
1722 location_name: Giant Sevens
1723 group: Observant Doors
1724 panels:
1725 - I (Seven)
1726 - room: Courtyard
1727 panel: I
1728 - room: Elements Area
1729 panel: A
1730 paintings:
1731 - id: crown_painting
1732 orientation: east
1733 Eight Alcove:
1734 entrances:
1735 The Incomparable:
1736 room: The Incomparable
1737 door: Eight Door
1738 Outside The Initiated:
1739 room: Outside The Initiated
1740 door: Eight Door
1741 paintings:
1742 - id: eight_painting2
1743 orientation: north
1744 Eight Room:
1745 entrances:
1746 Eight Alcove:
1747 painting: True
1748 panels:
1749 Eight Back:
1750 id: Strand Room/Panel_i_starling
1751 colors: blue
1752 tag: forbid
1753 Eight Front:
1754 id: Strand Room/Panel_i_starting
1755 colors: blue
1756 tag: forbid
1757 Nine:
1758 id: Strand Room/Panel_i_startling
1759 colors: blue
1760 tag: forbid
1761 paintings:
1762 - id: eight_painting
1763 orientation: south
1764 exit_only: True
1765 required: True
1766 Orange Tower:
1767 # This is a special, meta-ish room.
1768 entrances:
1769 Menu: True
1770 doors:
1771 Second Floor:
1772 id: Tower Room Area Doors/Door_level_1
1773 skip_location: True
1774 panels:
1775 - room: Orange Tower First Floor
1776 panel: DADS + ALE
1777 Third Floor:
1778 id: Tower Room Area Doors/Door_level_2
1779 skip_location: True
1780 panels:
1781 - room: Orange Tower First Floor
1782 panel: DADS + ALE
1783 - room: Outside The Undeterred
1784 panel: ART + ART
1785 Fourth Floor:
1786 id: Tower Room Area Doors/Door_level_3
1787 skip_location: True
1788 panels:
1789 - room: Orange Tower First Floor
1790 panel: DADS + ALE
1791 - room: Outside The Undeterred
1792 panel: ART + ART
1793 - room: Orange Tower Third Floor
1794 panel: DEER + WREN
1795 Fifth Floor:
1796 id: Tower Room Area Doors/Door_level_4
1797 skip_location: True
1798 panels:
1799 - room: Orange Tower First Floor
1800 panel: DADS + ALE
1801 - room: Outside The Undeterred
1802 panel: ART + ART
1803 - room: Orange Tower Third Floor
1804 panel: DEER + WREN
1805 - room: Orange Tower Fourth Floor
1806 panel: LEARNS + UNSEW
1807 Sixth Floor:
1808 id: Tower Room Area Doors/Door_level_5
1809 skip_location: True
1810 panels:
1811 - room: Orange Tower First Floor
1812 panel: DADS + ALE
1813 - room: Outside The Undeterred
1814 panel: ART + ART
1815 - room: Orange Tower Third Floor
1816 panel: DEER + WREN
1817 - room: Orange Tower Fourth Floor
1818 panel: LEARNS + UNSEW
1819 - room: Orange Tower Fifth Floor
1820 panel: DRAWL + RUNS
1821 Seventh Floor:
1822 id: Tower Room Area Doors/Door_level_6
1823 skip_location: True
1824 panels:
1825 - room: Orange Tower First Floor
1826 panel: DADS + ALE
1827 - room: Outside The Undeterred
1828 panel: ART + ART
1829 - room: Orange Tower Third Floor
1830 panel: DEER + WREN
1831 - room: Orange Tower Fourth Floor
1832 panel: LEARNS + UNSEW
1833 - room: Orange Tower Fifth Floor
1834 panel: DRAWL + RUNS
1835 - room: Owl Hallway
1836 panel: READS + RUST
1837 progression:
1838 Progressive Orange Tower:
1839 - Second Floor
1840 - Third Floor
1841 - Fourth Floor
1842 - Fifth Floor
1843 - Sixth Floor
1844 - Seventh Floor
1845 Orange Tower First Floor:
1846 entrances:
1847 Hub Room:
1848 door: Shortcut to Hub Room
1849 Outside The Wanderer:
1850 room: Outside The Wanderer
1851 door: Tower Entrance
1852 Orange Tower Second Floor:
1853 room: Orange Tower
1854 door: Second Floor
1855 Directional Gallery:
1856 door: Salt Pepper Door
1857 Roof: True # through the sunwarp
1858 panels:
1859 SECRET:
1860 id: Shuffle Room/Panel_secret_secret
1861 tag: midwhite
1862 DADS + ALE:
1863 id: Tower Room/Panel_dads_ale_dead_1
1864 colors: orange
1865 check: True
1866 tag: midorange
1867 SALT:
1868 id: Backside Room/Panel_salt_pepper
1869 colors: black
1870 tag: botblack
1871 doors:
1872 Shortcut to Hub Room:
1873 id: Shuffle Room Area Doors/Door_secret_secret
1874 group: Orange Tower First Floor - Shortcuts
1875 panels:
1876 - SECRET
1877 Salt Pepper Door:
1878 id: Count Up Room Area Doors/Door_salt_pepper
1879 location_name: Orange Tower First Floor - Salt Pepper Door
1880 group: Orange Tower First Floor - Shortcuts
1881 panels:
1882 - SALT
1883 - room: Directional Gallery
1884 panel: PEPPER
1885 Orange Tower Second Floor:
1886 entrances:
1887 Orange Tower First Floor:
1888 room: Orange Tower
1889 door: Second Floor
1890 Orange Tower Third Floor:
1891 room: Orange Tower
1892 door: Third Floor
1893 Outside The Undeterred: True
1894 Orange Tower Third Floor:
1895 entrances:
1896 Knight Night Exit:
1897 room: Knight Night (Final)
1898 door: Exit
1899 Orange Tower Second Floor:
1900 room: Orange Tower
1901 door: Third Floor
1902 Orange Tower Fourth Floor:
1903 room: Orange Tower
1904 door: Fourth Floor
1905 Hot Crusts Area: True # sunwarp
1906 Bearer Side Area: # This is complicated because of The Bearer's topology
1907 room: Bearer Side Area
1908 door: Shortcut to Tower
1909 Rhyme Room (Smiley):
1910 door: Rhyme Room Entrance
1911 panels:
1912 RED:
1913 id: Color Arrow Room/Panel_red_afar
1914 tag: midwhite
1915 required_door:
1916 door: Red Barrier
1917 DEER + WREN:
1918 id: Tower Room/Panel_deer_wren_rats_3
1919 colors: orange
1920 check: True
1921 tag: midorange
1922 doors:
1923 Red Barrier:
1924 id: Color Arrow Room Doors/Door_red_6
1925 group: Color Hunt Barriers
1926 skip_location: True
1927 panels:
1928 - room: Champion's Rest
1929 panel: RED
1930 Rhyme Room Entrance:
1931 id: Double Room Area Doors/Door_room_entry_stairs2
1932 skip_location: True
1933 group: Rhyme Room Doors
1934 panels:
1935 - room: The Tenacious
1936 panel: LEVEL (Black)
1937 - room: The Tenacious
1938 panel: RACECAR (Black)
1939 - room: The Tenacious
1940 panel: SOLOS (Black)
1941 Orange Barrier: # see note in Outside The Initiated
1942 id:
1943 - Color Arrow Room Doors/Door_orange_hider_1
1944 - Color Arrow Room Doors/Door_orange_hider_2
1945 - Color Arrow Room Doors/Door_orange_hider_3
1946 location_name: Color Hunt - RED and YELLOW
1947 group: Champion's Rest - Color Barriers
1948 item_name: Champion's Rest - Orange Barrier
1949 panels:
1950 - RED
1951 - room: Directional Gallery
1952 panel: YELLOW
1953 paintings:
1954 - id: arrows_painting_6
1955 orientation: east
1956 - id: flower_painting_5
1957 orientation: south
1958 Orange Tower Fourth Floor:
1959 entrances:
1960 Orange Tower Third Floor:
1961 room: Orange Tower
1962 door: Fourth Floor
1963 Orange Tower Fifth Floor:
1964 room: Orange Tower
1965 door: Fifth Floor
1966 Hot Crusts Area:
1967 door: Hot Crusts Door
1968 Crossroads:
1969 - room: Crossroads
1970 door: Tower Entrance
1971 - room: Crossroads
1972 door: Tower Back Entrance
1973 Courtyard: True
1974 Roof: True # through the sunwarp
1975 panels:
1976 RUNT:
1977 id: Shuffle Room/Panel_turn_runt2
1978 colors: yellow
1979 tag: midyellow
1980 RUNT (2):
1981 id: Shuffle Room/Panel_runt3
1982 colors:
1983 - yellow
1984 - blue
1985 tag: mid yellow blue
1986 LEARNS + UNSEW:
1987 id: Tower Room/Panel_learns_unsew_unrest_4
1988 colors: orange
1989 check: True
1990 tag: midorange
1991 HOT CRUSTS:
1992 id: Shuffle Room/Panel_shortcuts
1993 colors: yellow
1994 tag: midyellow
1995 IRK HORN:
1996 id: Shuffle Room/Panel_corner
1997 colors: yellow
1998 check: True
1999 exclude_reduce: True
2000 tag: topyellow
2001 doors:
2002 Hot Crusts Door:
2003 id: Shuffle Room Area Doors/Door_hotcrust_shortcuts
2004 panels:
2005 - HOT CRUSTS
2006 Hot Crusts Area:
2007 entrances:
2008 Orange Tower Fourth Floor:
2009 room: Orange Tower Fourth Floor
2010 door: Hot Crusts Door
2011 Roof: True # through the sunwarp
2012 panels:
2013 EIGHT:
2014 id: Backside Room/Panel_eight_eight_3
2015 tag: midwhite
2016 required_door:
2017 room: Number Hunt
2018 door: Eights
2019 paintings:
2020 - id: smile_painting_8
2021 orientation: north
2022 Orange Tower Fifth Floor:
2023 entrances:
2024 Orange Tower Fourth Floor:
2025 room: Orange Tower
2026 door: Fifth Floor
2027 Orange Tower Sixth Floor:
2028 room: Orange Tower
2029 door: Sixth Floor
2030 Cellar:
2031 room: Room Room
2032 door: Shortcut to Fifth Floor
2033 Welcome Back Area:
2034 door: Welcome Back
2035 Art Gallery:
2036 room: Art Gallery
2037 door: Exit
2038 The Bearer:
2039 room: Art Gallery
2040 door: Exit
2041 Outside The Initiated:
2042 room: Art Gallery
2043 door: Exit
2044 panels:
2045 SIZE (Small):
2046 id: Entry Room/Panel_size_small
2047 colors: gray
2048 tag: forbid
2049 SIZE (Big):
2050 id: Entry Room/Panel_size_big
2051 colors: gray
2052 tag: forbid
2053 DRAWL + RUNS:
2054 id: Tower Room/Panel_drawl_runs_enter_5
2055 colors: orange
2056 check: True
2057 tag: midorange
2058 NINE:
2059 id: Backside Room/Panel_nine_nine_2
2060 tag: midwhite
2061 required_door:
2062 room: Number Hunt
2063 door: Nines
2064 SUMMER:
2065 id: Entry Room/Panel_summer_summer
2066 tag: midwhite
2067 AUTUMN:
2068 id: Entry Room/Panel_autumn_autumn
2069 tag: midwhite
2070 SPRING:
2071 id: Entry Room/Panel_spring_spring
2072 tag: midwhite
2073 PAINTING (1):
2074 id: Panel Room/Panel_painting_flower
2075 colors: green
2076 tag: forbid
2077 required_room: Cellar
2078 PAINTING (2):
2079 id: Panel Room/Panel_painting_eye
2080 colors: green
2081 tag: forbid
2082 required_room: Cellar
2083 PAINTING (3):
2084 id: Panel Room/Panel_painting_snowman
2085 colors: green
2086 tag: forbid
2087 required_room: Cellar
2088 PAINTING (4):
2089 id: Panel Room/Panel_painting_owl
2090 colors: green
2091 tag: forbid
2092 required_room: Cellar
2093 PAINTING (5):
2094 id: Panel Room/Panel_painting_panda
2095 colors: green
2096 tag: forbid
2097 required_room: Cellar
2098 ROOM:
2099 id: Panel Room/Panel_room_stairs
2100 colors: gray
2101 tag: forbid
2102 required_room: Cellar
2103 doors:
2104 Welcome Back:
2105 id: Entry Room Area Doors/Door_sizes
2106 group: Welcome Back Doors
2107 panels:
2108 - SIZE (Small)
2109 - SIZE (Big)
2110 paintings:
2111 - id: hi_solved_painting3
2112 orientation: south
2113 - id: hi_solved_painting2
2114 orientation: south
2115 - id: east_afar
2116 orientation: north
2117 Orange Tower Sixth Floor:
2118 entrances:
2119 Orange Tower Fifth Floor:
2120 room: Orange Tower
2121 door: Sixth Floor
2122 The Scientific:
2123 painting: True
2124 paintings:
2125 - id: arrows_painting_10
2126 orientation: east
2127 - id: owl_painting_3
2128 orientation: north
2129 - id: clock_painting
2130 orientation: west
2131 - id: scenery_painting_5d_2
2132 orientation: south
2133 - id: symmetry_painting_b_7
2134 orientation: north
2135 - id: panda_painting_2
2136 orientation: south
2137 - id: crown_painting2
2138 orientation: north
2139 - id: colors_painting2
2140 orientation: south
2141 - id: cherry_painting2
2142 orientation: east
2143 - id: hi_solved_painting
2144 orientation: west
2145 Orange Tower Seventh Floor:
2146 entrances:
2147 Orange Tower Sixth Floor:
2148 room: Orange Tower
2149 door: Seventh Floor
2150 panels:
2151 THE END:
2152 id: EndPanel/Panel_end_end
2153 check: True
2154 tag: forbid
2155 non_counting: True
2156 THE MASTER:
2157 # We will set up special rules for this in code.
2158 id: Countdown Panels/Panel_master_master
2159 check: True
2160 tag: forbid
2161 MASTERY:
2162 # This is the MASTERY on the other side of THE FEARLESS. It can only be
2163 # accessed by jumping from the top of the tower.
2164 id: Master Room/Panel_mastery_mastery8
2165 tag: midwhite
2166 required_door:
2167 door: Mastery
2168 doors:
2169 Mastery:
2170 id:
2171 - Master Room Doors/Door_tower_down
2172 - Master Room Doors/Door_master_master
2173 - Master Room Doors/Door_master_master_2
2174 - Master Room Doors/Door_master_master_3
2175 - Master Room Doors/Door_master_master_4
2176 - Master Room Doors/Door_master_master_5
2177 - Master Room Doors/Door_master_master_6
2178 - Master Room Doors/Door_master_master_10
2179 - Master Room Doors/Door_master_master_11
2180 - Master Room Doors/Door_master_master_12
2181 - Master Room Doors/Door_master_master_13
2182 - Master Room Doors/Door_master_master_14
2183 - Master Room Doors/Door_master_master_15
2184 - Master Room Doors/Door_master_down
2185 - Master Room Doors/Door_master_down2
2186 skip_location: True
2187 panels:
2188 - THE MASTER
2189 Mastery Panels:
2190 skip_item: True
2191 location_name: Mastery Panels
2192 panels:
2193 - room: Room Room
2194 panel: MASTERY
2195 - room: The Steady (Topaz)
2196 panel: MASTERY
2197 - room: Orange Tower Basement
2198 panel: MASTERY
2199 - room: Arrow Garden
2200 panel: MASTERY
2201 - room: Hedge Maze
2202 panel: MASTERY (1)
2203 - room: Roof
2204 panel: MASTERY (1)
2205 - room: Roof
2206 panel: MASTERY (2)
2207 - MASTERY
2208 - room: Hedge Maze
2209 panel: MASTERY (2)
2210 - room: Roof
2211 panel: MASTERY (3)
2212 - room: Roof
2213 panel: MASTERY (4)
2214 - room: Roof
2215 panel: MASTERY (5)
2216 - room: Elements Area
2217 panel: MASTERY
2218 - room: Pilgrim Antechamber
2219 panel: MASTERY
2220 - room: Roof
2221 panel: MASTERY (6)
2222 paintings:
2223 - id: map_painting2
2224 orientation: north
2225 enter_only: True # otherwise you might just skip the whole game!
2226 req_blocked_when_no_doors: True # owl hallway in vanilla doors
2227 Roof:
2228 entrances:
2229 Orange Tower Seventh Floor: True
2230 Crossroads:
2231 room: Crossroads
2232 door: Roof Access
2233 panels:
2234 MASTERY (1):
2235 id: Master Room/Panel_mastery_mastery6
2236 tag: midwhite
2237 required_door:
2238 room: Orange Tower Seventh Floor
2239 door: Mastery
2240 MASTERY (2):
2241 id: Master Room/Panel_mastery_mastery7
2242 tag: midwhite
2243 required_door:
2244 room: Orange Tower Seventh Floor
2245 door: Mastery
2246 MASTERY (3):
2247 id: Master Room/Panel_mastery_mastery10
2248 tag: midwhite
2249 required_door:
2250 room: Orange Tower Seventh Floor
2251 door: Mastery
2252 MASTERY (4):
2253 id: Master Room/Panel_mastery_mastery11
2254 tag: midwhite
2255 required_door:
2256 room: Orange Tower Seventh Floor
2257 door: Mastery
2258 MASTERY (5):
2259 id: Master Room/Panel_mastery_mastery12
2260 tag: midwhite
2261 required_door:
2262 room: Orange Tower Seventh Floor
2263 door: Mastery
2264 MASTERY (6):
2265 id: Master Room/Panel_mastery_mastery15
2266 tag: midwhite
2267 required_door:
2268 room: Orange Tower Seventh Floor
2269 door: Mastery
2270 STAIRCASE:
2271 id: Open Areas/Panel_staircase
2272 tag: midwhite
2273 Orange Tower Basement:
2274 entrances:
2275 Orange Tower Sixth Floor:
2276 room: Orange Tower Seventh Floor
2277 door: Mastery
2278 panels:
2279 MASTERY:
2280 id: Master Room/Panel_mastery_mastery3
2281 tag: midwhite
2282 required_door:
2283 room: Orange Tower Seventh Floor
2284 door: Mastery
2285 THE LIBRARY:
2286 id: EndPanel/Panel_library
2287 check: True
2288 tag: forbid
2289 non_counting: True
2290 paintings:
2291 - id: arrows_painting_11
2292 orientation: east
2293 req_blocked_when_no_doors: True # owl hallway in vanilla doors
2294 Courtyard:
2295 entrances:
2296 Roof: True
2297 Orange Tower Fourth Floor: True
2298 Arrow Garden:
2299 painting: True
2300 Starting Room:
2301 door: Painting Shortcut
2302 painting: True
2303 Yellow Backside Area:
2304 room: First Second Third Fourth
2305 door: Backside Door
2306 The Colorful (White): True
2307 panels:
2308 I:
2309 id: Strand Room/Panel_i_staring
2310 colors: blue
2311 tag: forbid
2312 GREEN:
2313 id: Color Arrow Room/Panel_green_afar
2314 tag: midwhite
2315 required_door:
2316 door: Green Barrier
2317 PINECONE:
2318 id: Shuffle Room/Panel_pinecone_pine
2319 colors: brown
2320 tag: botbrown
2321 ACORN:
2322 id: Shuffle Room/Panel_acorn_oak
2323 colors: brown
2324 tag: botbrown
2325 doors:
2326 Painting Shortcut:
2327 painting_id: flower_painting_8
2328 item_name: Starting Room - Flower Painting
2329 skip_location: True
2330 panels:
2331 - room: First Second Third Fourth
2332 panel: FIRST
2333 - room: First Second Third Fourth
2334 panel: SECOND
2335 - room: First Second Third Fourth
2336 panel: THIRD
2337 - room: First Second Third Fourth
2338 panel: FOURTH
2339 Green Barrier:
2340 id: Color Arrow Room Doors/Door_green_5
2341 group: Color Hunt Barriers
2342 skip_location: True
2343 panels:
2344 - room: Champion's Rest
2345 panel: GREEN
2346 paintings:
2347 - id: flower_painting_7
2348 orientation: north
2349 Yellow Backside Area:
2350 entrances:
2351 Courtyard:
2352 room: First Second Third Fourth
2353 door: Backside Door
2354 Roof: True
2355 panels:
2356 BACKSIDE:
2357 id: Backside Room/Panel_backside_3
2358 tag: midwhite
2359 NINE:
2360 id: Backside Room/Panel_nine_nine_8
2361 tag: midwhite
2362 required_door:
2363 room: Number Hunt
2364 door: Nines
2365 paintings:
2366 - id: blueman_painting
2367 orientation: east
2368 First Second Third Fourth:
2369 # We are separating this door + its panels into its own room because they
2370 # are accessible from two distinct regions (Courtyard and Yellow Backside
2371 # Area). We need to do this because painting shuffle makes it possible to
2372 # have access to Yellow Backside Area without having access to Courtyard,
2373 # and we want it to still be in logic to solve these panels.
2374 entrances:
2375 Courtyard: True
2376 Yellow Backside Area: True
2377 panels:
2378 FIRST:
2379 id: Backside Room/Panel_first_first
2380 tag: midwhite
2381 SECOND:
2382 id: Backside Room/Panel_second_second
2383 tag: midwhite
2384 THIRD:
2385 id: Backside Room/Panel_third_third
2386 tag: midwhite
2387 FOURTH:
2388 id: Backside Room/Panel_fourth_fourth
2389 tag: midwhite
2390 doors:
2391 Backside Door:
2392 id: Count Up Room Area Doors/Door_yellow_backside
2393 group: Backside Doors
2394 location_name: Courtyard - FIRST, SECOND, THIRD, FOURTH
2395 item_name: Courtyard - Backside Door
2396 panels:
2397 - FIRST
2398 - SECOND
2399 - THIRD
2400 - FOURTH
2401 The Colorful (White):
2402 entrances:
2403 Courtyard: True
2404 The Colorful (Black):
2405 door: Progress Door
2406 panels:
2407 BEGIN:
2408 id: Doorways Room/Panel_begin_start
2409 tag: botwhite
2410 doors:
2411 Progress Door:
2412 id: Doorway Room Doors/Door_white
2413 item_name: The Colorful - White Door
2414 group: Colorful Doors
2415 location_name: The Colorful - White
2416 panels:
2417 - BEGIN
2418 The Colorful (Black):
2419 entrances:
2420 The Colorful (White):
2421 room: The Colorful (White)
2422 door: Progress Door
2423 The Colorful (Red):
2424 door: Progress Door
2425 panels:
2426 FOUND:
2427 id: Doorways Room/Panel_found_lost
2428 colors: black
2429 tag: botblack
2430 doors:
2431 Progress Door:
2432 id: Doorway Room Doors/Door_black
2433 item_name: The Colorful - Black Door
2434 location_name: The Colorful - Black
2435 group: Colorful Doors
2436 panels:
2437 - FOUND
2438 The Colorful (Red):
2439 entrances:
2440 The Colorful (Black):
2441 room: The Colorful (Black)
2442 door: Progress Door
2443 The Colorful (Yellow):
2444 door: Progress Door
2445 panels:
2446 LOAF:
2447 id: Doorways Room/Panel_loaf_crust
2448 colors: red
2449 tag: botred
2450 doors:
2451 Progress Door:
2452 id: Doorway Room Doors/Door_red
2453 item_name: The Colorful - Red Door
2454 location_name: The Colorful - Red
2455 group: Colorful Doors
2456 panels:
2457 - LOAF
2458 The Colorful (Yellow):
2459 entrances:
2460 The Colorful (Red):
2461 room: The Colorful (Red)
2462 door: Progress Door
2463 The Colorful (Blue):
2464 door: Progress Door
2465 panels:
2466 CREAM:
2467 id: Doorways Room/Panel_eggs_breakfast
2468 colors: yellow
2469 tag: botyellow
2470 doors:
2471 Progress Door:
2472 id: Doorway Room Doors/Door_yellow
2473 item_name: The Colorful - Yellow Door
2474 location_name: The Colorful - Yellow
2475 group: Colorful Doors
2476 panels:
2477 - CREAM
2478 The Colorful (Blue):
2479 entrances:
2480 The Colorful (Yellow):
2481 room: The Colorful (Yellow)
2482 door: Progress Door
2483 The Colorful (Purple):
2484 door: Progress Door
2485 panels:
2486 SUN:
2487 id: Doorways Room/Panel_sun_sky
2488 colors: blue
2489 tag: botblue
2490 doors:
2491 Progress Door:
2492 id: Doorway Room Doors/Door_blue
2493 item_name: The Colorful - Blue Door
2494 location_name: The Colorful - Blue
2495 group: Colorful Doors
2496 panels:
2497 - SUN
2498 The Colorful (Purple):
2499 entrances:
2500 The Colorful (Blue):
2501 room: The Colorful (Blue)
2502 door: Progress Door
2503 The Colorful (Orange):
2504 door: Progress Door
2505 panels:
2506 SPOON:
2507 id: Doorways Room/Panel_teacher_substitute
2508 colors: purple
2509 tag: botpurple
2510 doors:
2511 Progress Door:
2512 id: Doorway Room Doors/Door_purple
2513 item_name: The Colorful - Purple Door
2514 location_name: The Colorful - Purple
2515 group: Colorful Doors
2516 panels:
2517 - SPOON
2518 The Colorful (Orange):
2519 entrances:
2520 The Colorful (Purple):
2521 room: The Colorful (Purple)
2522 door: Progress Door
2523 The Colorful (Green):
2524 door: Progress Door
2525 panels:
2526 LETTERS:
2527 id: Doorways Room/Panel_walnuts_orange
2528 colors: orange
2529 tag: botorange
2530 doors:
2531 Progress Door:
2532 id: Doorway Room Doors/Door_orange
2533 item_name: The Colorful - Orange Door
2534 location_name: The Colorful - Orange
2535 group: Colorful Doors
2536 panels:
2537 - LETTERS
2538 The Colorful (Green):
2539 entrances:
2540 The Colorful (Orange):
2541 room: The Colorful (Orange)
2542 door: Progress Door
2543 The Colorful (Brown):
2544 door: Progress Door
2545 panels:
2546 WALLS:
2547 id: Doorways Room/Panel_path_i
2548 colors: green
2549 tag: forbid
2550 doors:
2551 Progress Door:
2552 id: Doorway Room Doors/Door_green
2553 item_name: The Colorful - Green Door
2554 location_name: The Colorful - Green
2555 group: Colorful Doors
2556 panels:
2557 - WALLS
2558 The Colorful (Brown):
2559 entrances:
2560 The Colorful (Green):
2561 room: The Colorful (Green)
2562 door: Progress Door
2563 The Colorful (Gray):
2564 door: Progress Door
2565 panels:
2566 IRON:
2567 id: Doorways Room/Panel_iron_rust
2568 colors: brown
2569 tag: botbrown
2570 doors:
2571 Progress Door:
2572 id: Doorway Room Doors/Door_brown
2573 item_name: The Colorful - Brown Door
2574 location_name: The Colorful - Brown
2575 group: Colorful Doors
2576 panels:
2577 - IRON
2578 The Colorful (Gray):
2579 entrances:
2580 The Colorful (Brown):
2581 room: The Colorful (Brown)
2582 door: Progress Door
2583 The Colorful:
2584 door: Progress Door
2585 panels:
2586 OBSTACLE:
2587 id: Doorways Room/Panel_obstacle_door
2588 colors: gray
2589 tag: forbid
2590 doors:
2591 Progress Door:
2592 id:
2593 - Doorway Room Doors/Door_gray
2594 - Doorway Room Doors/Door_gray2 # See comment below
2595 item_name: The Colorful - Gray Door
2596 location_name: The Colorful - Gray
2597 group: Colorful Doors
2598 panels:
2599 - OBSTACLE
2600 The Colorful:
2601 # The set of required_doors in the achievement panel should prevent
2602 # generation from asking you to solve The Colorful before opening all of the
2603 # doors. Access from the roof is included so that the painting here could be
2604 # an entrance. The client will have to be hardcoded to not open the door to
2605 # the achievement until all of the doors are open, whether by solving the
2606 # panels or through receiving items.
2607 entrances:
2608 The Colorful (Gray):
2609 room: The Colorful (Gray)
2610 door: Progress Door
2611 Roof: True
2612 panels:
2613 Achievement:
2614 id: Countdown Panels/Panel_colorful_colorful
2615 check: True
2616 tag: forbid
2617 required_door:
2618 - room: The Colorful (White)
2619 door: Progress Door
2620 - room: The Colorful (Black)
2621 door: Progress Door
2622 - room: The Colorful (Red)
2623 door: Progress Door
2624 - room: The Colorful (Yellow)
2625 door: Progress Door
2626 - room: The Colorful (Blue)
2627 door: Progress Door
2628 - room: The Colorful (Purple)
2629 door: Progress Door
2630 - room: The Colorful (Orange)
2631 door: Progress Door
2632 - room: The Colorful (Green)
2633 door: Progress Door
2634 - room: The Colorful (Brown)
2635 door: Progress Door
2636 - room: The Colorful (Gray)
2637 door: Progress Door
2638 achievement: The Colorful
2639 paintings:
2640 - id: arrows_painting_12
2641 orientation: north
2642 Welcome Back Area:
2643 entrances:
2644 Starting Room:
2645 door: Shortcut to Starting Room
2646 Hub Room: True
2647 Outside The Wondrous: True
2648 Outside The Undeterred: True
2649 Outside The Agreeable: True
2650 Outside The Wanderer: True
2651 Orange Tower Fifth Floor:
2652 room: Orange Tower Fifth Floor
2653 door: Welcome Back
2654 Challenge Room:
2655 room: Challenge Room
2656 door: Welcome Door
2657 panels:
2658 WELCOME BACK:
2659 id: Entry Room/Panel_return_return
2660 tag: midwhite
2661 SECRET:
2662 id: Entry Room/Panel_secret_secret
2663 tag: midwhite
2664 CLOCKWISE:
2665 id: Shuffle Room/Panel_clockwise_counterclockwise
2666 colors: black
2667 check: True
2668 exclude_reduce: True
2669 tag: botblack
2670 doors:
2671 Shortcut to Starting Room:
2672 id: Entry Room Area Doors/Door_return_return
2673 group: Welcome Back Doors
2674 include_reduce: True
2675 panels:
2676 - WELCOME BACK
2677 Owl Hallway:
2678 entrances:
2679 Hidden Room:
2680 painting: True
2681 Hedge Maze:
2682 door: Shortcut to Hedge Maze
2683 Orange Tower Sixth Floor:
2684 painting: True
2685 panels:
2686 STRAYS:
2687 id: Maze Room/Panel_strays_maze
2688 colors: purple
2689 tag: toppurp
2690 READS + RUST:
2691 id: Tower Room/Panel_reads_rust_lawns_6
2692 colors: orange
2693 check: True
2694 tag: midorange
2695 doors:
2696 Shortcut to Hedge Maze:
2697 id: Maze Area Doors/Door_strays_maze
2698 group: Hedge Maze Doors
2699 panels:
2700 - STRAYS
2701 paintings:
2702 - id: arrows_painting_8
2703 orientation: south
2704 - id: maze_painting_2
2705 orientation: north
2706 - id: owl_painting_2
2707 orientation: south
2708 required_when_no_doors: True
2709 - id: clock_painting_4
2710 orientation: north
2711 Outside The Initiated:
2712 entrances:
2713 Hub Room:
2714 door: Shortcut to Hub Room
2715 Knight Night Exit:
2716 room: Knight Night (Final)
2717 door: Exit
2718 Orange Tower Third Floor: True # sunwarp
2719 Orange Tower Fifth Floor:
2720 room: Art Gallery
2721 door: Exit
2722 Eight Alcove:
2723 door: Eight Door
2724 panels:
2725 SEVEN (1):
2726 id: Backside Room/Panel_seven_seven_5
2727 tag: midwhite
2728 required_door:
2729 room: Number Hunt
2730 door: Sevens
2731 SEVEN (2):
2732 id: Backside Room/Panel_seven_seven_6
2733 tag: midwhite
2734 required_door:
2735 room: Number Hunt
2736 door: Sevens
2737 EIGHT:
2738 id: Backside Room/Panel_eight_eight_7
2739 tag: midwhite
2740 required_door:
2741 room: Number Hunt
2742 door: Eights
2743 NINE:
2744 id: Backside Room/Panel_nine_nine_4
2745 tag: midwhite
2746 required_door:
2747 room: Number Hunt
2748 door: Nines
2749 BLUE:
2750 id: Color Arrow Room/Panel_blue_afar
2751 tag: midwhite
2752 required_door:
2753 door: Blue Barrier
2754 ORANGE:
2755 id: Color Arrow Room/Panel_orange_afar
2756 tag: midwhite
2757 required_door:
2758 door: Orange Barrier
2759 UNCOVER:
2760 id: Appendix Room/Panel_discover_recover
2761 colors: purple
2762 tag: midpurp
2763 OXEN:
2764 id: Rhyme Room/Panel_locked_knocked
2765 colors: purple
2766 tag: midpurp
2767 BACKSIDE:
2768 id: Backside Room/Panel_backside_1
2769 tag: midwhite
2770 The Optimistic:
2771 id: Countdown Panels/Panel_optimistic_optimistic
2772 check: True
2773 tag: forbid
2774 required_door:
2775 door: Backsides
2776 achievement: The Optimistic
2777 PAST:
2778 id: Shuffle Room/Panel_past_present
2779 colors: brown
2780 tag: botbrown
2781 FUTURE:
2782 id: Shuffle Room/Panel_future_present
2783 colors:
2784 - brown
2785 - black
2786 tag: bot brown black
2787 FUTURE (2):
2788 id: Shuffle Room/Panel_future_past
2789 colors: black
2790 tag: botblack
2791 PAST (2):
2792 id: Shuffle Room/Panel_past_future
2793 colors: black
2794 tag: botblack
2795 PRESENT:
2796 id: Shuffle Room/Panel_past_past
2797 colors:
2798 - brown
2799 - black
2800 tag: bot brown black
2801 SMILE:
2802 id: Open Areas/Panel_smile_smile
2803 tag: midwhite
2804 ANGERED:
2805 id: Open Areas/Panel_angered_enraged
2806 colors:
2807 - yellow
2808 tag: syn anagram
2809 copy_to_sign: sign18
2810 VOTE:
2811 id: Open Areas/Panel_vote_veto
2812 colors:
2813 - yellow
2814 - black
2815 tag: ant anagram
2816 copy_to_sign: sign17
2817 doors:
2818 Shortcut to Hub Room:
2819 id: Appendix Room Area Doors/Door_recover_discover
2820 panels:
2821 - UNCOVER
2822 Blue Barrier:
2823 id: Color Arrow Room Doors/Door_blue_3
2824 group: Color Hunt Barriers
2825 skip_location: True
2826 panels:
2827 - room: Champion's Rest
2828 panel: BLUE
2829 Orange Barrier:
2830 id: Color Arrow Room Doors/Door_orange_3
2831 group: Color Hunt Barriers
2832 skip_location: True
2833 panels:
2834 - room: Champion's Rest
2835 panel: ORANGE
2836 Initiated Entrance:
2837 id: Red Blue Purple Room Area Doors/Door_locked_knocked
2838 item_name: The Initiated - Entrance
2839 panels:
2840 - OXEN
2841 # These would be more appropriate in Champion's Rest, but as currently
2842 # implemented, locations need to include at least one panel from the
2843 # containing region.
2844 Green Barrier:
2845 id: Color Arrow Room Doors/Door_green_hider_1
2846 location_name: Color Hunt - BLUE and YELLOW
2847 item_name: Champion's Rest - Green Barrier
2848 group: Champion's Rest - Color Barriers
2849 panels:
2850 - BLUE
2851 - room: Directional Gallery
2852 panel: YELLOW
2853 Purple Barrier:
2854 id:
2855 - Color Arrow Room Doors/Door_purple_hider_1
2856 - Color Arrow Room Doors/Door_purple_hider_2
2857 - Color Arrow Room Doors/Door_purple_hider_3
2858 location_name: Color Hunt - RED and BLUE
2859 item_name: Champion's Rest - Purple Barrier
2860 group: Champion's Rest - Color Barriers
2861 panels:
2862 - BLUE
2863 - room: Orange Tower Third Floor
2864 panel: RED
2865 Entrance:
2866 id:
2867 - Color Arrow Room Doors/Door_all_hider_1
2868 - Color Arrow Room Doors/Door_all_hider_2
2869 - Color Arrow Room Doors/Door_all_hider_3
2870 location_name: Color Hunt - GREEN, ORANGE and PURPLE
2871 item_name: Champion's Rest - Entrance
2872 panels:
2873 - ORANGE
2874 - room: Courtyard
2875 panel: GREEN
2876 - room: Outside The Agreeable
2877 panel: PURPLE
2878 Backsides:
2879 event: True
2880 panels:
2881 - room: The Observant
2882 panel: BACKSIDE
2883 - room: Yellow Backside Area
2884 panel: BACKSIDE
2885 - room: Directional Gallery
2886 panel: BACKSIDE
2887 - room: The Bearer
2888 panel: BACKSIDE
2889 Eight Door:
2890 id: Red Blue Purple Room Area Doors/Door_a_strands2
2891 skip_location: True
2892 panels:
2893 - room: The Incomparable
2894 panel: I (Seven)
2895 - room: Courtyard
2896 panel: I
2897 - room: Elements Area
2898 panel: A
2899 paintings:
2900 - id: clock_painting_5
2901 orientation: east
2902 - id: smile_painting_1
2903 orientation: north
2904 The Initiated:
2905 entrances:
2906 Outside The Initiated:
2907 room: Outside The Initiated
2908 door: Initiated Entrance
2909 panels:
2910 Achievement:
2911 id: Countdown Panels/Panel_illuminated_initiated
2912 colors: purple
2913 tag: forbid
2914 check: True
2915 achievement: The Initiated
2916 DAUGHTER:
2917 id: Rhyme Room/Panel_daughter_laughter
2918 colors: purple
2919 tag: midpurp
2920 START:
2921 id: Rhyme Room/Panel_move_love
2922 colors: purple
2923 tag: double midpurp
2924 subtag: left
2925 link: change STARS
2926 STARE:
2927 id: Rhyme Room/Panel_stove_love
2928 colors: purple
2929 tag: double midpurp
2930 subtag: right
2931 link: change STARS
2932 HYPE:
2933 id: Rhyme Room/Panel_scope_type
2934 colors: purple
2935 tag: midpurp and rhyme
2936 copy_to_sign: sign16
2937 ABYSS:
2938 id: Rhyme Room/Panel_abyss_this
2939 colors: purple
2940 tag: toppurp
2941 SWEAT:
2942 id: Rhyme Room/Panel_sweat_great
2943 colors: purple
2944 tag: double midpurp
2945 subtag: left
2946 link: change GREAT
2947 BEAT:
2948 id: Rhyme Room/Panel_beat_great
2949 colors: purple
2950 tag: double midpurp
2951 subtag: right
2952 link: change GREAT
2953 ALUMNI:
2954 id: Rhyme Room/Panel_alumni_hi
2955 colors: purple
2956 tag: midpurp and rhyme
2957 copy_to_sign: sign14
2958 PATS:
2959 id: Rhyme Room/Panel_wrath_path
2960 colors: purple
2961 tag: midpurp and rhyme
2962 copy_to_sign: sign15
2963 KNIGHT:
2964 id: Rhyme Room/Panel_knight_write
2965 colors: purple
2966 tag: double toppurp
2967 subtag: left
2968 link: change WRITE
2969 BYTE:
2970 id: Rhyme Room/Panel_byte_write
2971 colors: purple
2972 tag: double toppurp
2973 subtag: right
2974 link: change WRITE
2975 MAIM:
2976 id: Rhyme Room/Panel_maim_same
2977 colors: purple
2978 tag: toppurp
2979 MORGUE:
2980 id: Rhyme Room/Panel_chair_bear
2981 colors: purple
2982 tag: purple rhyme change stack
2983 subtag: top
2984 link: prcs CYBORG
2985 CHAIR:
2986 id: Rhyme Room/Panel_bare_bear
2987 colors: purple
2988 tag: toppurp
2989 HUMAN:
2990 id: Rhyme Room/Panel_cost_most
2991 colors: purple
2992 tag: purple rhyme change stack
2993 subtag: bot
2994 link: prcs CYBORG
2995 BED:
2996 id: Rhyme Room/Panel_bed_dead
2997 colors: purple
2998 tag: toppurp
2999 The Traveled:
3000 entrances:
3001 Hub Room:
3002 room: Hub Room
3003 door: Traveled Entrance
3004 Color Hallways:
3005 door: Color Hallways Entrance
3006 panels:
3007 Achievement:
3008 id: Countdown Panels/Panel_traveled_traveled
3009 required_room: Hub Room
3010 tag: forbid
3011 check: True
3012 achievement: The Traveled
3013 CLOSE:
3014 id: Synonym Room/Panel_close_near
3015 tag: botwhite
3016 COMPOSE:
3017 id: Synonym Room/Panel_compose_write
3018 tag: double botwhite
3019 subtag: left
3020 link: syn WRITE
3021 RECORD:
3022 id: Synonym Room/Panel_record_write
3023 tag: double botwhite
3024 subtag: right
3025 link: syn WRITE
3026 CATEGORY:
3027 id: Synonym Room/Panel_category_type
3028 tag: botwhite
3029 HELLO:
3030 id: Synonym Room/Panel_hello_hi
3031 tag: botwhite
3032 DUPLICATE:
3033 id: Synonym Room/Panel_duplicate_same
3034 tag: double botwhite
3035 subtag: left
3036 link: syn SAME
3037 IDENTICAL:
3038 id: Synonym Room/Panel_identical_same
3039 tag: double botwhite
3040 subtag: right
3041 link: syn SAME
3042 DISTANT:
3043 id: Synonym Room/Panel_distant_far
3044 tag: botwhite
3045 HAY:
3046 id: Synonym Room/Panel_hay_straw
3047 tag: botwhite
3048 GIGGLE:
3049 id: Synonym Room/Panel_giggle_laugh
3050 tag: double botwhite
3051 subtag: left
3052 link: syn LAUGH
3053 CHUCKLE:
3054 id: Synonym Room/Panel_chuckle_laugh
3055 tag: double botwhite
3056 subtag: right
3057 link: syn LAUGH
3058 SNITCH:
3059 id: Synonym Room/Panel_snitch_rat
3060 tag: botwhite
3061 CONCEALED:
3062 id: Synonym Room/Panel_concealed_hidden
3063 tag: botwhite
3064 PLUNGE:
3065 id: Synonym Room/Panel_plunge_fall
3066 tag: double botwhite
3067 subtag: left
3068 link: syn FALL
3069 AUTUMN:
3070 id: Synonym Room/Panel_autumn_fall
3071 tag: double botwhite
3072 subtag: right
3073 link: syn FALL
3074 ROAD:
3075 id: Synonym Room/Panel_growths_warts
3076 tag: botwhite
3077 FOUR:
3078 id: Backside Room/Panel_four_four_4
3079 tag: midwhite
3080 required_door:
3081 room: Outside The Undeterred
3082 door: Fours
3083 doors:
3084 Color Hallways Entrance:
3085 id: Appendix Room Area Doors/Door_hello_hi
3086 group: Entrance to The Traveled
3087 panels:
3088 - HELLO
3089 Color Hallways:
3090 entrances:
3091 The Traveled:
3092 room: The Traveled
3093 door: Color Hallways Entrance
3094 Outside The Bold: True
3095 Outside The Undeterred: True
3096 Crossroads: True
3097 Hedge Maze: True
3098 Outside The Initiated: True # backside
3099 Directional Gallery: True # backside
3100 Yellow Backside Area: True
3101 The Bearer:
3102 room: The Bearer
3103 door: Backside Door
3104 The Observant:
3105 room: The Observant
3106 door: Backside Door
3107 Outside The Bold:
3108 entrances:
3109 Color Hallways: True
3110 Champion's Rest:
3111 room: Champion's Rest
3112 door: Shortcut to The Steady
3113 The Bearer:
3114 room: The Bearer
3115 door: Shortcut to The Bold
3116 Directional Gallery:
3117 # There is a painting warp here from the Directional Gallery, but it
3118 # only appears when the sixes are revealed. It could be its own item if
3119 # we wanted.
3120 room: Number Hunt
3121 door: Sixes
3122 painting: True
3123 Starting Room:
3124 door: Painting Shortcut
3125 painting: True
3126 Room Room: True # trapdoor
3127 panels:
3128 UNOPEN:
3129 id: Truncate Room/Panel_unopened_open
3130 colors: red
3131 tag: midred
3132 BEGIN:
3133 id: Rock Room/Panel_begin_begin
3134 tag: midwhite
3135 SIX:
3136 id: Backside Room/Panel_six_six_4
3137 tag: midwhite
3138 required_door:
3139 room: Number Hunt
3140 door: Sixes
3141 NINE:
3142 id: Backside Room/Panel_nine_nine_5
3143 tag: midwhite
3144 required_door:
3145 room: Number Hunt
3146 door: Nines
3147 LEFT:
3148 id: Shuffle Room/Panel_left_left_2
3149 tag: midwhite
3150 RIGHT:
3151 id: Shuffle Room/Panel_right_right_2
3152 tag: midwhite
3153 RISE (Horizon):
3154 id: Open Areas/Panel_rise_horizon
3155 colors: blue
3156 tag: double topblue
3157 subtag: left
3158 link: expand HORIZON
3159 RISE (Sunrise):
3160 id: Open Areas/Panel_rise_sunrise
3161 colors: blue
3162 tag: double topblue
3163 subtag: left
3164 link: expand SUNRISE
3165 ZEN:
3166 id: Open Areas/Panel_son_horizon
3167 colors: blue
3168 tag: double topblue
3169 subtag: right
3170 link: expand HORIZON
3171 SON:
3172 id: Open Areas/Panel_son_sunrise
3173 colors: blue
3174 tag: double topblue
3175 subtag: right
3176 link: expand SUNRISE
3177 STARGAZER:
3178 id: Open Areas/Panel_stargazer_stargazer
3179 tag: midwhite
3180 required_door:
3181 door: Stargazer Door
3182 MOUTH:
3183 id: Cross Room/Panel_mouth_south
3184 colors: purple
3185 tag: midpurp
3186 YEAST:
3187 id: Cross Room/Panel_yeast_east
3188 colors: red
3189 tag: midred
3190 WET:
3191 id: Cross Room/Panel_wet_west
3192 colors: blue
3193 tag: midblue
3194 doors:
3195 Bold Entrance:
3196 id: Red Blue Purple Room Area Doors/Door_unopened_open
3197 item_name: The Bold - Entrance
3198 panels:
3199 - UNOPEN
3200 Painting Shortcut:
3201 painting_id: pencil_painting6
3202 skip_location: True
3203 item_name: Starting Room - Pencil Painting
3204 panels:
3205 - UNOPEN
3206 Steady Entrance:
3207 id: Rock Room Doors/Door_2
3208 item_name: The Steady - Entrance
3209 panels:
3210 - BEGIN
3211 Lilac Entrance:
3212 event: True
3213 panels:
3214 - room: The Steady (Rose)
3215 panel: SOAR
3216 Stargazer Door:
3217 event: True
3218 panels:
3219 - RISE (Horizon)
3220 - RISE (Sunrise)
3221 - ZEN
3222 - SON
3223 paintings:
3224 - id: pencil_painting2
3225 orientation: west
3226 - id: north_missing2
3227 orientation: north
3228 The Bold:
3229 entrances:
3230 Outside The Bold:
3231 room: Outside The Bold
3232 door: Bold Entrance
3233 panels:
3234 Achievement:
3235 id: Countdown Panels/Panel_emboldened_bold
3236 colors: red
3237 tag: forbid
3238 check: True
3239 achievement: The Bold
3240 FOOT:
3241 id: Truncate Room/Panel_foot_toe
3242 colors: red
3243 tag: botred
3244 NEEDLE:
3245 id: Truncate Room/Panel_needle_eye
3246 colors: red
3247 tag: double botred
3248 subtag: left
3249 link: mero EYE
3250 FACE:
3251 id: Truncate Room/Panel_face_eye
3252 colors: red
3253 tag: double botred
3254 subtag: right
3255 link: mero EYE
3256 SIGN:
3257 id: Truncate Room/Panel_sign_sigh
3258 colors: red
3259 tag: topred
3260 HEARTBREAK:
3261 id: Truncate Room/Panel_heartbreak_brake
3262 colors: red
3263 tag: topred
3264 UNDEAD:
3265 id: Truncate Room/Panel_undead_dead
3266 colors: red
3267 tag: double midred
3268 subtag: left
3269 link: trunc DEAD
3270 DEADLINE:
3271 id: Truncate Room/Panel_deadline_dead
3272 colors: red
3273 tag: double midred
3274 subtag: right
3275 link: trunc DEAD
3276 SUSHI:
3277 id: Truncate Room/Panel_sushi_hi
3278 colors: red
3279 tag: midred
3280 THISTLE:
3281 id: Truncate Room/Panel_thistle_this
3282 colors: red
3283 tag: midred
3284 LANDMASS:
3285 id: Truncate Room/Panel_landmass_mass
3286 colors: red
3287 tag: double midred
3288 subtag: left
3289 link: trunc MASS
3290 MASSACRED:
3291 id: Truncate Room/Panel_massacred_mass
3292 colors: red
3293 tag: double midred
3294 subtag: right
3295 link: trunc MASS
3296 AIRPLANE:
3297 id: Truncate Room/Panel_airplane_plain
3298 colors: red
3299 tag: topred
3300 NIGHTMARE:
3301 id: Truncate Room/Panel_nightmare_knight
3302 colors: red
3303 tag: topred
3304 MOUTH:
3305 id: Truncate Room/Panel_mouth_teeth
3306 colors: red
3307 tag: double botred
3308 subtag: left
3309 link: mero TEETH
3310 SAW:
3311 id: Truncate Room/Panel_saw_teeth
3312 colors: red
3313 tag: double botred
3314 subtag: right
3315 link: mero TEETH
3316 HAND:
3317 id: Truncate Room/Panel_hand_finger
3318 colors: red
3319 tag: botred
3320 Outside The Undeterred:
3321 entrances:
3322 Color Hallways: True
3323 Orange Tower First Floor: True # sunwarp
3324 Orange Tower Second Floor: True
3325 The Artistic (Smiley): True
3326 The Artistic (Panda): True
3327 The Artistic (Apple): True
3328 The Artistic (Lattice): True
3329 Yellow Backside Area:
3330 painting: True
3331 Number Hunt:
3332 door: Number Hunt
3333 Directional Gallery:
3334 room: Directional Gallery
3335 door: Shortcut to The Undeterred
3336 Starting Room:
3337 door: Painting Shortcut
3338 painting: True
3339 panels:
3340 HOLLOW:
3341 id: Hallway Room/Panel_hollow_hollow
3342 tag: midwhite
3343 ART + ART:
3344 id: Tower Room/Panel_art_art_eat_2
3345 colors: orange
3346 check: True
3347 tag: midorange
3348 PEN:
3349 id: Blue Room/Panel_pen_open
3350 colors: blue
3351 tag: midblue
3352 HUSTLING:
3353 id: Open Areas/Panel_hustling_sunlight
3354 colors: yellow
3355 tag: midyellow
3356 SUNLIGHT:
3357 id: Open Areas/Panel_sunlight_light
3358 colors: red
3359 tag: midred
3360 required_panel:
3361 panel: HUSTLING
3362 LIGHT:
3363 id: Open Areas/Panel_light_bright
3364 colors: purple
3365 tag: midpurp
3366 required_panel:
3367 panel: SUNLIGHT
3368 BRIGHT:
3369 id: Open Areas/Panel_bright_sunny
3370 tag: botwhite
3371 required_panel:
3372 panel: LIGHT
3373 SUNNY:
3374 id: Open Areas/Panel_sunny_rainy
3375 colors: black
3376 tag: botblack
3377 required_panel:
3378 panel: BRIGHT
3379 RAINY:
3380 id: Open Areas/Panel_rainy_rainbow
3381 colors: brown
3382 tag: botbrown
3383 required_panel:
3384 panel: SUNNY
3385 check: True
3386 ZERO:
3387 id: Backside Room/Panel_zero_zero
3388 tag: midwhite
3389 required_door:
3390 room: Number Hunt
3391 door: Zero Door
3392 ONE:
3393 id: Backside Room/Panel_one_one
3394 tag: midwhite
3395 TWO (1):
3396 id: Backside Room/Panel_two_two
3397 tag: midwhite
3398 required_door:
3399 door: Twos
3400 TWO (2):
3401 id: Backside Room/Panel_two_two_2
3402 tag: midwhite
3403 required_door:
3404 door: Twos
3405 THREE (1):
3406 id: Backside Room/Panel_three_three
3407 tag: midwhite
3408 required_door:
3409 door: Threes
3410 THREE (2):
3411 id: Backside Room/Panel_three_three_2
3412 tag: midwhite
3413 required_door:
3414 door: Threes
3415 THREE (3):
3416 id: Backside Room/Panel_three_three_3
3417 tag: midwhite
3418 required_door:
3419 door: Threes
3420 FOUR:
3421 id: Backside Room/Panel_four_four
3422 tag: midwhite
3423 required_door:
3424 door: Fours
3425 doors:
3426 Undeterred Entrance:
3427 id: Red Blue Purple Room Area Doors/Door_pen_open
3428 item_name: The Undeterred - Entrance
3429 panels:
3430 - PEN
3431 Painting Shortcut:
3432 painting_id:
3433 - blueman_painting_3
3434 - arrows_painting3
3435 skip_location: True
3436 item_name: Starting Room - Blue Painting
3437 panels:
3438 - PEN
3439 Green Painting:
3440 painting_id: maze_painting_3
3441 skip_location: True
3442 panels:
3443 - FOUR
3444 Twos:
3445 id:
3446 - Count Up Room Area Doors/Door_two_hider
3447 - Count Up Room Area Doors/Door_two_hider_2
3448 include_reduce: True
3449 panels:
3450 - ONE
3451 Threes:
3452 id:
3453 - Count Up Room Area Doors/Door_three_hider
3454 - Count Up Room Area Doors/Door_three_hider_2
3455 - Count Up Room Area Doors/Door_three_hider_3
3456 location_name: Twos
3457 include_reduce: True
3458 panels:
3459 - TWO (1)
3460 - TWO (2)
3461 Number Hunt:
3462 id: Count Up Room Area Doors/Door_three_unlocked
3463 location_name: Threes
3464 include_reduce: True
3465 panels:
3466 - THREE (1)
3467 - THREE (2)
3468 - THREE (3)
3469 Fours:
3470 id:
3471 - Count Up Room Area Doors/Door_four_hider
3472 - Count Up Room Area Doors/Door_four_hider_2
3473 - Count Up Room Area Doors/Door_four_hider_3
3474 - Count Up Room Area Doors/Door_four_hider_4
3475 skip_location: True
3476 panels:
3477 - THREE (1)
3478 - THREE (2)
3479 - THREE (3)
3480 Fives:
3481 id:
3482 - Count Up Room Area Doors/Door_five_hider
3483 - Count Up Room Area Doors/Door_five_hider_4
3484 - Count Up Room Area Doors/Door_five_hider_5
3485 location_name: Fours
3486 item_name: Number Hunt - Fives
3487 include_reduce: True
3488 panels:
3489 - FOUR
3490 - room: Hub Room
3491 panel: FOUR
3492 - room: Dead End Area
3493 panel: FOUR
3494 - room: The Traveled
3495 panel: FOUR
3496 Challenge Entrance:
3497 id: Count Up Room Area Doors/Door_zero_unlocked
3498 item_name: Number Hunt - Challenge Entrance
3499 panels:
3500 - ZERO
3501 paintings:
3502 - id: maze_painting_3
3503 enter_only: True
3504 orientation: north
3505 move: True
3506 required_door:
3507 door: Green Painting
3508 - id: blueman_painting_2
3509 orientation: east
3510 The Undeterred:
3511 entrances:
3512 Outside The Undeterred:
3513 room: Outside The Undeterred
3514 door: Undeterred Entrance
3515 panels:
3516 Achievement:
3517 id: Countdown Panels/Panel_deterred_undeterred
3518 colors: blue
3519 tag: forbid
3520 check: True
3521 achievement: The Undeterred
3522 BONE:
3523 id: Blue Room/Panel_bone_skeleton
3524 colors: blue
3525 tag: botblue
3526 EYE:
3527 id: Blue Room/Panel_mouth_face
3528 colors: blue
3529 tag: double botblue
3530 subtag: left
3531 link: holo FACE
3532 MOUTH:
3533 id: Blue Room/Panel_eye_face
3534 colors: blue
3535 tag: double botblue
3536 subtag: right
3537 link: holo FACE
3538 IRIS:
3539 id: Blue Room/Panel_toucan_bird
3540 colors: blue
3541 tag: botblue
3542 EYE (2):
3543 id: Blue Room/Panel_two_toucan
3544 colors: blue
3545 tag: topblue
3546 ICE:
3547 id: Blue Room/Panel_ice_eyesight
3548 colors: blue
3549 tag: double topblue
3550 subtag: left
3551 link: hex EYESIGHT
3552 HEIGHT:
3553 id: Blue Room/Panel_height_eyesight
3554 colors: blue
3555 tag: double topblue
3556 subtag: right
3557 link: hex EYESIGHT
3558 EYE (3):
3559 id: Blue Room/Panel_eye_hi
3560 colors: blue
3561 tag: topblue
3562 NOT:
3563 id: Blue Room/Panel_not_notice
3564 colors: blue
3565 tag: midblue
3566 JUST:
3567 id: Blue Room/Panel_just_readjust
3568 colors: blue
3569 tag: double midblue
3570 subtag: left
3571 link: exp READJUST
3572 READ:
3573 id: Blue Room/Panel_read_readjust
3574 colors: blue
3575 tag: double midblue
3576 subtag: right
3577 link: exp READJUST
3578 FATHER:
3579 id: Blue Room/Panel_ate_primate
3580 colors: blue
3581 tag: midblue
3582 FEATHER:
3583 id: Blue Room/Panel_primate_mammal
3584 colors: blue
3585 tag: botblue
3586 CONTINENT:
3587 id: Blue Room/Panel_continent_planet
3588 colors: blue
3589 tag: double botblue
3590 subtag: left
3591 link: holo PLANET
3592 OCEAN:
3593 id: Blue Room/Panel_ocean_planet
3594 colors: blue
3595 tag: double botblue
3596 subtag: right
3597 link: holo PLANET
3598 WALL:
3599 id: Blue Room/Panel_wall_room
3600 colors: blue
3601 tag: botblue
3602 Number Hunt:
3603 # This works a little differently than in the base game. The door to the
3604 # initial number in each set opens at the same time as the rest of the doors
3605 # in that set.
3606 entrances:
3607 Outside The Undeterred:
3608 room: Outside The Undeterred
3609 door: Number Hunt
3610 Directional Gallery:
3611 door: Door to Directional Gallery
3612 Challenge Room:
3613 room: Outside The Undeterred
3614 door: Challenge Entrance
3615 panels:
3616 FIVE:
3617 id: Backside Room/Panel_five_five
3618 tag: midwhite
3619 required_door:
3620 room: Outside The Undeterred
3621 door: Fives
3622 SIX:
3623 id: Backside Room/Panel_six_six
3624 tag: midwhite
3625 required_door:
3626 door: Sixes
3627 SEVEN:
3628 id: Backside Room/Panel_seven_seven
3629 tag: midwhite
3630 required_door:
3631 door: Sevens
3632 EIGHT:
3633 id: Backside Room/Panel_eight_eight
3634 tag: midwhite
3635 required_door:
3636 door: Eights
3637 NINE:
3638 id: Backside Room/Panel_nine_nine
3639 tag: midwhite
3640 required_door:
3641 door: Nines
3642 doors:
3643 Door to Directional Gallery:
3644 id: Count Up Room Area Doors/Door_five_unlocked
3645 group: Directional Gallery Doors
3646 skip_location: True
3647 panels:
3648 - FIVE
3649 Sixes:
3650 id:
3651 - Count Up Room Area Doors/Door_six_hider
3652 - Count Up Room Area Doors/Door_six_hider_2
3653 - Count Up Room Area Doors/Door_six_hider_3
3654 - Count Up Room Area Doors/Door_six_hider_4
3655 - Count Up Room Area Doors/Door_six_hider_5
3656 - Count Up Room Area Doors/Door_six_hider_6
3657 painting_id: pencil_painting3 # See note in Outside The Bold
3658 location_name: Fives
3659 include_reduce: True
3660 panels:
3661 - FIVE
3662 - room: Outside The Agreeable
3663 panel: FIVE (1)
3664 - room: Outside The Agreeable
3665 panel: FIVE (2)
3666 - room: Directional Gallery
3667 panel: FIVE (1)
3668 - room: Directional Gallery
3669 panel: FIVE (2)
3670 Sevens:
3671 id:
3672 - Count Up Room Area Doors/Door_seven_hider
3673 - Count Up Room Area Doors/Door_seven_unlocked
3674 - Count Up Room Area Doors/Door_seven_hider_2
3675 - Count Up Room Area Doors/Door_seven_hider_3
3676 - Count Up Room Area Doors/Door_seven_hider_4
3677 - Count Up Room Area Doors/Door_seven_hider_5
3678 - Count Up Room Area Doors/Door_seven_hider_6
3679 - Count Up Room Area Doors/Door_seven_hider_7
3680 location_name: Sixes
3681 include_reduce: True
3682 panels:
3683 - SIX
3684 - room: Outside The Bold
3685 panel: SIX
3686 - room: Directional Gallery
3687 panel: SIX (1)
3688 - room: Directional Gallery
3689 panel: SIX (2)
3690 - room: The Bearer (East)
3691 panel: SIX
3692 - room: The Bearer (South)
3693 panel: SIX
3694 Eights:
3695 id:
3696 - Count Up Room Area Doors/Door_eight_hider
3697 - Count Up Room Area Doors/Door_eight_unlocked
3698 - Count Up Room Area Doors/Door_eight_hider_2
3699 - Count Up Room Area Doors/Door_eight_hider_3
3700 - Count Up Room Area Doors/Door_eight_hider_4
3701 - Count Up Room Area Doors/Door_eight_hider_5
3702 - Count Up Room Area Doors/Door_eight_hider_6
3703 - Count Up Room Area Doors/Door_eight_hider_7
3704 - Count Up Room Area Doors/Door_eight_hider_8
3705 location_name: Sevens
3706 include_reduce: True
3707 panels:
3708 - SEVEN
3709 - room: Directional Gallery
3710 panel: SEVEN
3711 - room: Knight Night Exit
3712 panel: SEVEN (1)
3713 - room: Knight Night Exit
3714 panel: SEVEN (2)
3715 - room: Knight Night Exit
3716 panel: SEVEN (3)
3717 - room: Outside The Initiated
3718 panel: SEVEN (1)
3719 - room: Outside The Initiated
3720 panel: SEVEN (2)
3721 Nines:
3722 id:
3723 - Count Up Room Area Doors/Door_nine_hider
3724 - Count Up Room Area Doors/Door_nine_hider_2
3725 - Count Up Room Area Doors/Door_nine_hider_3
3726 - Count Up Room Area Doors/Door_nine_hider_4
3727 - Count Up Room Area Doors/Door_nine_hider_5
3728 - Count Up Room Area Doors/Door_nine_hider_6
3729 - Count Up Room Area Doors/Door_nine_hider_7
3730 - Count Up Room Area Doors/Door_nine_hider_8
3731 - Count Up Room Area Doors/Door_nine_hider_9
3732 location_name: Eights
3733 include_reduce: True
3734 panels:
3735 - EIGHT
3736 - room: Directional Gallery
3737 panel: EIGHT
3738 - room: The Eyes They See
3739 panel: EIGHT
3740 - room: Dead End Area
3741 panel: EIGHT
3742 - room: Crossroads
3743 panel: EIGHT
3744 - room: Hot Crusts Area
3745 panel: EIGHT
3746 - room: Art Gallery
3747 panel: EIGHT
3748 - room: Outside The Initiated
3749 panel: EIGHT
3750 Zero Door:
3751 # The black wall isn't a door, so we can't ever hide it.
3752 id: Count Up Room Area Doors/Door_zero_hider_2
3753 location_name: Nines
3754 item_name: Outside The Undeterred - Zero Door
3755 include_reduce: True
3756 panels:
3757 - NINE
3758 - room: Directional Gallery
3759 panel: NINE
3760 - room: Amen Name Area
3761 panel: NINE
3762 - room: Yellow Backside Area
3763 panel: NINE
3764 - room: Outside The Initiated
3765 panel: NINE
3766 - room: Outside The Bold
3767 panel: NINE
3768 - room: Rhyme Room (Cross)
3769 panel: NINE
3770 - room: Orange Tower Fifth Floor
3771 panel: NINE
3772 - room: Elements Area
3773 panel: NINE
3774 paintings:
3775 - id: smile_painting_5
3776 enter_only: True
3777 orientation: east
3778 required_door:
3779 door: Eights
3780 Directional Gallery:
3781 entrances:
3782 Outside The Agreeable: True # sunwarp
3783 Orange Tower First Floor:
3784 room: Orange Tower First Floor
3785 door: Salt Pepper Door
3786 Outside The Undeterred:
3787 door: Shortcut to The Undeterred
3788 Number Hunt:
3789 room: Number Hunt
3790 door: Door to Directional Gallery
3791 panels:
3792 PEPPER:
3793 id: Backside Room/Panel_pepper_salt
3794 colors: black
3795 tag: botblack
3796 TURN:
3797 id: Backside Room/Panel_turn_return
3798 colors: blue
3799 tag: midblue
3800 LEARN:
3801 id: Backside Room/Panel_learn_return
3802 colors: purple
3803 tag: midpurp
3804 FIVE (1):
3805 id: Backside Room/Panel_five_five_3
3806 tag: midwhite
3807 required_panel:
3808 panel: LIGHT
3809 FIVE (2):
3810 id: Backside Room/Panel_five_five_2
3811 tag: midwhite
3812 required_panel:
3813 panel: WARD
3814 SIX (1):
3815 id: Backside Room/Panel_six_six_3
3816 tag: midwhite
3817 required_door:
3818 room: Number Hunt
3819 door: Sixes
3820 SIX (2):
3821 id: Backside Room/Panel_six_six_2
3822 tag: midwhite
3823 required_door:
3824 room: Number Hunt
3825 door: Sixes
3826 SEVEN:
3827 id: Backside Room/Panel_seven_seven_2
3828 tag: midwhite
3829 required_door:
3830 room: Number Hunt
3831 door: Sevens
3832 EIGHT:
3833 id: Backside Room/Panel_eight_eight_2
3834 tag: midwhite
3835 required_door:
3836 room: Number Hunt
3837 door: Eights
3838 NINE:
3839 id: Backside Room/Panel_nine_nine_6
3840 tag: midwhite
3841 required_door:
3842 room: Number Hunt
3843 door: Nines
3844 BACKSIDE:
3845 id: Backside Room/Panel_backside_4
3846 tag: midwhite
3847 "834283054":
3848 id: Tower Room/Panel_834283054_undaunted
3849 colors: orange
3850 check: True
3851 exclude_reduce: True
3852 tag: midorange
3853 required_door:
3854 room: Number Hunt
3855 door: Sixes
3856 PARANOID:
3857 id: Backside Room/Panel_paranoid_paranoid
3858 tag: midwhite
3859 check: True
3860 exclude_reduce: True
3861 required_door:
3862 room: Number Hunt
3863 door: Sixes
3864 YELLOW:
3865 id: Color Arrow Room/Panel_yellow_afar
3866 tag: midwhite
3867 required_door:
3868 door: Yellow Barrier
3869 WADED + WEE:
3870 id: Tower Room/Panel_waded_wee_warts_7
3871 colors: orange
3872 check: True
3873 exclude_reduce: True
3874 tag: midorange
3875 THE EYES:
3876 id: Shuffle Room/Panel_theeyes_theeyes
3877 tag: midwhite
3878 LEFT:
3879 id: Shuffle Room/Panel_left_left
3880 tag: midwhite
3881 RIGHT:
3882 id: Shuffle Room/Panel_right_right
3883 tag: midwhite
3884 MIDDLE:
3885 id: Shuffle Room/Panel_middle_middle
3886 tag: midwhite
3887 WARD:
3888 id: Backside Room/Panel_ward_forward
3889 colors: blue
3890 tag: midblue
3891 HIND:
3892 id: Backside Room/Panel_hind_behind
3893 colors: blue
3894 tag: midblue
3895 RIG:
3896 id: Backside Room/Panel_rig_right
3897 colors: blue
3898 tag: midblue
3899 WINDWARD:
3900 id: Backside Room/Panel_windward_forward
3901 colors: purple
3902 tag: midpurp
3903 LIGHT:
3904 id: Backside Room/Panel_light_right
3905 colors: purple
3906 tag: midpurp
3907 REWIND:
3908 id: Backside Room/Panel_rewind_behind
3909 colors: purple
3910 tag: midpurp
3911 doors:
3912 Shortcut to The Undeterred:
3913 id: Count Up Room Area Doors/Door_return_double
3914 group: Directional Gallery Doors
3915 panels:
3916 - TURN
3917 - LEARN
3918 Yellow Barrier:
3919 id: Color Arrow Room Doors/Door_yellow_4
3920 group: Color Hunt Barriers
3921 skip_location: True
3922 panels:
3923 - room: Champion's Rest
3924 panel: YELLOW
3925 paintings:
3926 - id: smile_painting_7
3927 orientation: south
3928 - id: flower_painting_4
3929 orientation: south
3930 - id: pencil_painting3
3931 enter_only: True
3932 orientation: east
3933 move: True
3934 required_door:
3935 room: Number Hunt
3936 door: Sixes
3937 - id: boxes_painting
3938 orientation: south
3939 - id: cherry_painting
3940 orientation: east
3941 Champion's Rest:
3942 entrances:
3943 Outside The Bold:
3944 door: Shortcut to The Steady
3945 Orange Tower Fourth Floor: True # sunwarp
3946 Roof: True # through ceiling of sunwarp
3947 panels:
3948 EXIT:
3949 id: Rock Room/Panel_red_red
3950 tag: midwhite
3951 HUES:
3952 id: Color Arrow Room/Panel_hues_colors
3953 tag: botwhite
3954 RED:
3955 id: Color Arrow Room/Panel_red_near
3956 check: True
3957 tag: midwhite
3958 BLUE:
3959 id: Color Arrow Room/Panel_blue_near
3960 check: True
3961 tag: midwhite
3962 YELLOW:
3963 id: Color Arrow Room/Panel_yellow_near
3964 check: True
3965 tag: midwhite
3966 GREEN:
3967 id: Color Arrow Room/Panel_green_near
3968 check: True
3969 tag: midwhite
3970 required_door:
3971 room: Outside The Initiated
3972 door: Green Barrier
3973 PURPLE:
3974 id: Color Arrow Room/Panel_purple_near
3975 check: True
3976 tag: midwhite
3977 required_door:
3978 room: Outside The Initiated
3979 door: Purple Barrier
3980 ORANGE:
3981 id: Color Arrow Room/Panel_orange_near
3982 check: True
3983 tag: midwhite
3984 required_door:
3985 room: Orange Tower Third Floor
3986 door: Orange Barrier
3987 YOU:
3988 id: Color Arrow Room/Panel_you
3989 required_door:
3990 room: Outside The Initiated
3991 door: Entrance
3992 check: True
3993 colors: gray
3994 tag: forbid
3995 ME:
3996 id: Color Arrow Room/Panel_me
3997 colors: gray
3998 tag: forbid
3999 required_door:
4000 room: Outside The Initiated
4001 door: Entrance
4002 SECRET BLUE:
4003 # Pretend this and the other two are white, because they are snipes.
4004 # TODO: Extract them and randomize them?
4005 id: Color Arrow Room/Panel_secret_blue
4006 tag: forbid
4007 required_door:
4008 room: Outside The Initiated
4009 door: Entrance
4010 SECRET YELLOW:
4011 id: Color Arrow Room/Panel_secret_yellow
4012 tag: forbid
4013 required_door:
4014 room: Outside The Initiated
4015 door: Entrance
4016 SECRET RED:
4017 id: Color Arrow Room/Panel_secret_red
4018 tag: forbid
4019 required_door:
4020 room: Outside The Initiated
4021 door: Entrance
4022 doors:
4023 Shortcut to The Steady:
4024 id: Rock Room Doors/Door_hint
4025 panels:
4026 - EXIT
4027 paintings:
4028 - id: arrows_painting_7
4029 orientation: east
4030 - id: fruitbowl_painting3
4031 orientation: west
4032 enter_only: True
4033 required_door:
4034 room: Outside The Initiated
4035 door: Entrance
4036 - id: colors_painting
4037 orientation: south
4038 enter_only: True
4039 required_door:
4040 room: Outside The Initiated
4041 door: Entrance
4042 The Bearer:
4043 entrances:
4044 Outside The Bold:
4045 door: Shortcut to The Bold
4046 Orange Tower Fifth Floor:
4047 room: Art Gallery
4048 door: Exit
4049 The Bearer (East): True
4050 The Bearer (North): True
4051 The Bearer (South): True
4052 The Bearer (West): True
4053 Roof: True
4054 panels:
4055 Achievement:
4056 id: Countdown Panels/Panel_bearer_bearer
4057 check: True
4058 tag: forbid
4059 required_panel:
4060 - panel: PART
4061 - panel: HEART
4062 - room: Cross Tower (East)
4063 panel: WINTER
4064 - room: The Bearer (East)
4065 panel: PEACE
4066 - room: Cross Tower (North)
4067 panel: NORTH
4068 - room: The Bearer (North)
4069 panel: SILENT (1)
4070 - room: The Bearer (North)
4071 panel: SILENT (2)
4072 - room: The Bearer (North)
4073 panel: SPACE
4074 - room: The Bearer (North)
4075 panel: WARTS
4076 - room: Cross Tower (South)
4077 panel: FIRE
4078 - room: The Bearer (South)
4079 panel: TENT
4080 - room: The Bearer (South)
4081 panel: BOWL
4082 - room: Cross Tower (West)
4083 panel: DIAMONDS
4084 - room: The Bearer (West)
4085 panel: SNOW
4086 - room: The Bearer (West)
4087 panel: SMILE
4088 - room: Bearer Side Area
4089 panel: SHORTCUT
4090 - room: Bearer Side Area
4091 panel: POTS
4092 achievement: The Bearer
4093 MIDDLE:
4094 id: Shuffle Room/Panel_middle_middle_2
4095 tag: midwhite
4096 FARTHER:
4097 id: Backside Room/Panel_farther_far
4098 colors: red
4099 tag: midred
4100 BACKSIDE:
4101 id: Backside Room/Panel_backside_5
4102 tag: midwhite
4103 required_door:
4104 door: Backside Door
4105 PART:
4106 id: Cross Room/Panel_part_rap
4107 colors:
4108 - red
4109 - yellow
4110 tag: mid red yellow
4111 required_panel:
4112 room: The Bearer (East)
4113 panel: PEACE
4114 HEART:
4115 id: Cross Room/Panel_heart_tar
4116 colors:
4117 - red
4118 - yellow
4119 tag: mid red yellow
4120 doors:
4121 Shortcut to The Bold:
4122 id: Red Blue Purple Room Area Doors/Door_middle_middle
4123 panels:
4124 - MIDDLE
4125 Backside Door:
4126 id: Red Blue Purple Room Area Doors/Door_locked_knocked2 # yeah...
4127 group: Backside Doors
4128 panels:
4129 - FARTHER
4130 East Entrance:
4131 event: True
4132 panels:
4133 - HEART
4134 The Bearer (East):
4135 entrances:
4136 Cross Tower (East): True
4137 Bearer Side Area:
4138 door: Side Area Access
4139 Roof: True
4140 panels:
4141 SIX:
4142 id: Backside Room/Panel_six_six_5
4143 tag: midwhite
4144 colors:
4145 - red
4146 - yellow
4147 required_door:
4148 room: Number Hunt
4149 door: Sixes
4150 PEACE:
4151 id: Cross Room/Panel_peace_ape
4152 colors:
4153 - red
4154 - yellow
4155 tag: mid red yellow
4156 doors:
4157 North Entrance:
4158 event: True
4159 panels:
4160 - room: The Bearer
4161 panel: PART
4162 Side Area Access:
4163 event: True
4164 panels:
4165 - room: The Bearer (North)
4166 panel: SPACE
4167 The Bearer (North):
4168 entrances:
4169 Cross Tower (East): True
4170 Roof: True
4171 panels:
4172 SILENT (1):
4173 id: Cross Room/Panel_silent_list
4174 colors:
4175 - red
4176 - yellow
4177 tag: mid red yellow
4178 required_panel:
4179 room: The Bearer (West)
4180 panel: SMILE
4181 SILENT (2):
4182 id: Cross Room/Panel_silent_list_2
4183 colors:
4184 - red
4185 - yellow
4186 tag: mid yellow red
4187 required_panel:
4188 room: The Bearer (West)
4189 panel: SMILE
4190 SPACE:
4191 id: Cross Room/Panel_space_cape
4192 colors:
4193 - red
4194 - yellow
4195 tag: mid red yellow
4196 WARTS:
4197 id: Cross Room/Panel_warts_star
4198 colors:
4199 - red
4200 - yellow
4201 tag: mid red yellow
4202 required_panel:
4203 room: The Bearer (West)
4204 panel: SNOW
4205 doors:
4206 South Entrance:
4207 event: True
4208 panels:
4209 - room: Bearer Side Area
4210 panel: POTS
4211 The Bearer (South):
4212 entrances:
4213 Cross Tower (North): True
4214 Bearer Side Area:
4215 door: Side Area Shortcut
4216 Roof: True
4217 panels:
4218 SIX:
4219 id: Backside Room/Panel_six_six_6
4220 tag: midwhite
4221 colors:
4222 - red
4223 - yellow
4224 required_door:
4225 room: Number Hunt
4226 door: Sixes
4227 TENT:
4228 id: Cross Room/Panel_tent_net
4229 colors:
4230 - red
4231 - yellow
4232 tag: mid red yellow
4233 BOWL:
4234 id: Cross Room/Panel_bowl_low
4235 colors:
4236 - red
4237 - yellow
4238 tag: mid red yellow
4239 required_panel:
4240 panel: TENT
4241 doors:
4242 Side Area Shortcut:
4243 event: True
4244 panels:
4245 - room: The Bearer (North)
4246 panel: SILENT (1)
4247 The Bearer (West):
4248 entrances:
4249 Cross Tower (West): True
4250 Bearer Side Area:
4251 door: Side Area Shortcut
4252 Roof: True
4253 panels:
4254 SNOW:
4255 id: Cross Room/Panel_smile_lime
4256 colors:
4257 - red
4258 - yellow
4259 tag: mid yellow red
4260 SMILE:
4261 id: Cross Room/Panel_snow_won
4262 colors:
4263 - red
4264 - yellow
4265 tag: mid red yellow
4266 required_panel:
4267 room: The Bearer (North)
4268 panel: WARTS
4269 doors:
4270 Side Area Shortcut:
4271 event: True
4272 panels:
4273 - room: Cross Tower (East)
4274 panel: WINTER
4275 - room: Cross Tower (North)
4276 panel: NORTH
4277 - room: Cross Tower (South)
4278 panel: FIRE
4279 - room: Cross Tower (West)
4280 panel: DIAMONDS
4281 Bearer Side Area:
4282 entrances:
4283 The Bearer (East):
4284 room: The Bearer (East)
4285 door: Side Area Access
4286 The Bearer (South):
4287 room: The Bearer (South)
4288 door: Side Area Shortcut
4289 The Bearer (West):
4290 room: The Bearer (West)
4291 door: Side Area Shortcut
4292 Orange Tower Third Floor:
4293 door: Shortcut to Tower
4294 Roof: True
4295 panels:
4296 SHORTCUT:
4297 id: Cross Room/Panel_shortcut_shortcut
4298 tag: midwhite
4299 POTS:
4300 id: Cross Room/Panel_pots_top
4301 colors:
4302 - red
4303 - yellow
4304 tag: mid yellow red
4305 doors:
4306 Shortcut to Tower:
4307 id: Cross Room Doors/Door_shortcut
4308 item_name: The Bearer - Shortcut to Tower
4309 location_name: The Bearer - SHORTCUT
4310 panels:
4311 - SHORTCUT
4312 West Entrance:
4313 event: True
4314 panels:
4315 - room: The Bearer (South)
4316 panel: BOWL
4317 Cross Tower (East):
4318 entrances:
4319 The Bearer:
4320 room: The Bearer
4321 door: East Entrance
4322 Roof: True
4323 panels:
4324 WINTER:
4325 id: Cross Room/Panel_winter_winter
4326 colors: blue
4327 tag: forbid
4328 required_panel:
4329 room: The Bearer (North)
4330 panel: SPACE
4331 required_room: Orange Tower Fifth Floor
4332 Cross Tower (North):
4333 entrances:
4334 The Bearer (East):
4335 room: The Bearer (East)
4336 door: North Entrance
4337 Roof: True
4338 panels:
4339 NORTH:
4340 id: Cross Room/Panel_north_north
4341 colors: blue
4342 tag: forbid
4343 required_panel:
4344 room: The Bearer (West)
4345 panel: SMILE
4346 required_room: Outside The Bold
4347 Cross Tower (South):
4348 entrances: # No roof access
4349 The Bearer (North):
4350 room: The Bearer (North)
4351 door: South Entrance
4352 panels:
4353 FIRE:
4354 id: Cross Room/Panel_fire_fire
4355 colors: blue
4356 tag: forbid
4357 required_panel:
4358 room: The Bearer (North)
4359 panel: SILENT (1)
4360 required_room: Elements Area
4361 Cross Tower (West):
4362 entrances:
4363 Bearer Side Area:
4364 room: Bearer Side Area
4365 door: West Entrance
4366 Roof: True
4367 panels:
4368 DIAMONDS:
4369 id: Cross Room/Panel_diamonds_diamonds
4370 colors: blue
4371 tag: forbid
4372 required_panel:
4373 room: The Bearer (North)
4374 panel: WARTS
4375 required_room: Suits Area
4376 The Steady (Rose):
4377 entrances:
4378 Outside The Bold:
4379 room: Outside The Bold
4380 door: Steady Entrance
4381 The Steady (Lilac):
4382 room: The Steady
4383 door: Reveal
4384 The Steady (Ruby):
4385 door: Forward Exit
4386 The Steady (Carnation):
4387 door: Right Exit
4388 panels:
4389 SOAR:
4390 id: Rock Room/Panel_soar_rose
4391 colors: black
4392 tag: topblack
4393 doors:
4394 Forward Exit:
4395 event: True
4396 panels:
4397 - SOAR
4398 Right Exit:
4399 event: True
4400 panels:
4401 - room: The Steady (Lilac)
4402 panel: LIE LACK
4403 The Steady (Ruby):
4404 entrances:
4405 The Steady (Rose):
4406 room: The Steady (Rose)
4407 door: Forward Exit
4408 The Steady (Amethyst):
4409 room: The Steady
4410 door: Reveal
4411 The Steady (Cherry):
4412 door: Forward Exit
4413 The Steady (Amber):
4414 door: Right Exit
4415 panels:
4416 BURY:
4417 id: Rock Room/Panel_bury_ruby
4418 colors: yellow
4419 tag: midyellow
4420 doors:
4421 Forward Exit:
4422 event: True
4423 panels:
4424 - room: The Steady (Lime)
4425 panel: LIMELIGHT
4426 Right Exit:
4427 event: True
4428 panels:
4429 - room: The Steady (Carnation)
4430 panel: INCARNATION
4431 The Steady (Carnation):
4432 entrances:
4433 The Steady (Rose):
4434 room: The Steady (Rose)
4435 door: Right Exit
4436 Outside The Bold:
4437 room: The Steady
4438 door: Reveal
4439 The Steady (Amber):
4440 room: The Steady
4441 door: Reveal
4442 The Steady (Sunflower):
4443 door: Right Exit
4444 panels:
4445 INCARNATION:
4446 id: Rock Room/Panel_incarnation_carnation
4447 colors: red
4448 tag: midred
4449 doors:
4450 Right Exit:
4451 event: True
4452 panels:
4453 - room: The Steady (Amethyst)
4454 panel: PACIFIST
4455 The Steady (Sunflower):
4456 entrances:
4457 The Steady (Carnation):
4458 room: The Steady (Carnation)
4459 door: Right Exit
4460 The Steady (Topaz):
4461 room: The Steady (Topaz)
4462 door: Back Exit
4463 panels:
4464 SUN:
4465 id: Rock Room/Panel_sun_sunflower
4466 colors: blue
4467 tag: midblue
4468 doors:
4469 Back Exit:
4470 event: True
4471 panels:
4472 - SUN
4473 The Steady (Plum):
4474 entrances:
4475 The Steady (Amethyst):
4476 room: The Steady
4477 door: Reveal
4478 The Steady (Blueberry):
4479 room: The Steady
4480 door: Reveal
4481 The Steady (Cherry):
4482 room: The Steady (Cherry)
4483 door: Left Exit
4484 panels:
4485 LUMP:
4486 id: Rock Room/Panel_lump_plum
4487 colors: yellow
4488 tag: midyellow
4489 The Steady (Lime):
4490 entrances:
4491 The Steady (Sunflower): True
4492 The Steady (Emerald):
4493 room: The Steady
4494 door: Reveal
4495 The Steady (Blueberry):
4496 door: Right Exit
4497 panels:
4498 LIMELIGHT:
4499 id: Rock Room/Panel_limelight_lime
4500 colors: red
4501 tag: midred
4502 doors:
4503 Right Exit:
4504 event: True
4505 panels:
4506 - room: The Steady (Amber)
4507 panel: ANTECHAMBER
4508 paintings:
4509 - id: pencil_painting5
4510 orientation: south
4511 The Steady (Lemon):
4512 entrances:
4513 The Steady (Emerald): True
4514 The Steady (Orange):
4515 room: The Steady
4516 door: Reveal
4517 The Steady (Topaz):
4518 door: Back Exit
4519 panels:
4520 MELON:
4521 id: Rock Room/Panel_melon_lemon
4522 colors: yellow
4523 tag: midyellow
4524 doors:
4525 Back Exit:
4526 event: True
4527 panels:
4528 - MELON
4529 paintings:
4530 - id: pencil_painting4
4531 orientation: south
4532 The Steady (Topaz):
4533 entrances:
4534 The Steady (Lemon):
4535 room: The Steady (Lemon)
4536 door: Back Exit
4537 The Steady (Amber):
4538 room: The Steady
4539 door: Reveal
4540 The Steady (Sunflower):
4541 door: Back Exit
4542 panels:
4543 TOP:
4544 id: Rock Room/Panel_top_topaz
4545 colors: blue
4546 tag: midblue
4547 MASTERY:
4548 id: Master Room/Panel_mastery_mastery2
4549 tag: midwhite
4550 required_door:
4551 room: Orange Tower Seventh Floor
4552 door: Mastery
4553 doors:
4554 Back Exit:
4555 event: True
4556 panels:
4557 - TOP
4558 The Steady (Orange):
4559 entrances:
4560 The Steady (Cherry):
4561 room: The Steady
4562 door: Reveal
4563 The Steady (Lemon):
4564 room: The Steady
4565 door: Reveal
4566 The Steady (Amber):
4567 room: The Steady (Amber)
4568 door: Forward Exit
4569 panels:
4570 BLUE:
4571 id: Rock Room/Panel_blue_orange
4572 colors: black
4573 tag: botblack
4574 The Steady (Sapphire):
4575 entrances:
4576 The Steady (Emerald):
4577 door: Left Exit
4578 The Steady (Blueberry):
4579 room: The Steady
4580 door: Reveal
4581 The Steady (Amethyst):
4582 room: The Steady (Amethyst)
4583 door: Left Exit
4584 panels:
4585 SAP:
4586 id: Rock Room/Panel_sap_sapphire
4587 colors: blue
4588 tag: midblue
4589 doors:
4590 Left Exit:
4591 event: True
4592 panels:
4593 - room: The Steady (Plum)
4594 panel: LUMP
4595 - room: The Steady (Orange)
4596 panel: BLUE
4597 The Steady (Blueberry):
4598 entrances:
4599 The Steady (Lime):
4600 room: The Steady (Lime)
4601 door: Right Exit
4602 The Steady (Sapphire):
4603 room: The Steady
4604 door: Reveal
4605 The Steady (Plum):
4606 room: The Steady
4607 door: Reveal
4608 panels:
4609 BLUE:
4610 id: Rock Room/Panel_blue_blueberry
4611 colors: blue
4612 tag: midblue
4613 The Steady (Amber):
4614 entrances:
4615 The Steady (Ruby):
4616 room: The Steady (Ruby)
4617 door: Right Exit
4618 The Steady (Carnation):
4619 room: The Steady
4620 door: Reveal
4621 The Steady (Orange):
4622 door: Forward Exit
4623 The Steady (Topaz):
4624 room: The Steady
4625 door: Reveal
4626 panels:
4627 ANTECHAMBER:
4628 id: Rock Room/Panel_antechamber_amber
4629 colors: red
4630 tag: midred
4631 doors:
4632 Forward Exit:
4633 event: True
4634 panels:
4635 - room: The Steady (Blueberry)
4636 panel: BLUE
4637 The Steady (Emerald):
4638 entrances:
4639 The Steady (Sapphire):
4640 room: The Steady (Sapphire)
4641 door: Left Exit
4642 The Steady (Lime):
4643 room: The Steady
4644 door: Reveal
4645 panels:
4646 HERALD:
4647 id: Rock Room/Panel_herald_emerald
4648 colors: purple
4649 tag: midpurp
4650 The Steady (Amethyst):
4651 entrances:
4652 The Steady (Lilac):
4653 room: The Steady (Lilac)
4654 door: Forward Exit
4655 The Steady (Sapphire):
4656 door: Left Exit
4657 The Steady (Plum):
4658 room: The Steady
4659 door: Reveal
4660 The Steady (Ruby):
4661 room: The Steady
4662 door: Reveal
4663 panels:
4664 PACIFIST:
4665 id: Rock Room/Panel_thistle_amethyst
4666 colors: purple
4667 tag: toppurp
4668 doors:
4669 Left Exit:
4670 event: True
4671 panels:
4672 - room: The Steady (Sunflower)
4673 panel: SUN
4674 The Steady (Lilac):
4675 entrances:
4676 Outside The Bold:
4677 room: Outside The Bold
4678 door: Lilac Entrance
4679 The Steady (Amethyst):
4680 door: Forward Exit
4681 The Steady (Rose):
4682 room: The Steady
4683 door: Reveal
4684 panels:
4685 LIE LACK:
4686 id: Rock Room/Panel_lielack_lilac
4687 tag: topwhite
4688 doors:
4689 Forward Exit:
4690 event: True
4691 panels:
4692 - room: The Steady (Ruby)
4693 panel: BURY
4694 The Steady (Cherry):
4695 entrances:
4696 The Steady (Plum):
4697 door: Left Exit
4698 The Steady (Orange):
4699 room: The Steady
4700 door: Reveal
4701 The Steady (Ruby):
4702 room: The Steady (Ruby)
4703 door: Forward Exit
4704 panels:
4705 HAIRY:
4706 id: Rock Room/Panel_hairy_cherry
4707 colors: blue
4708 tag: topblue
4709 doors:
4710 Left Exit:
4711 event: True
4712 panels:
4713 - room: The Steady (Sapphire)
4714 panel: SAP
4715 The Steady:
4716 entrances:
4717 The Steady (Sunflower):
4718 room: The Steady (Sunflower)
4719 door: Back Exit
4720 panels:
4721 Achievement:
4722 id: Countdown Panels/Panel_steady_steady
4723 required_panel:
4724 - room: The Steady (Rose)
4725 panel: SOAR
4726 - room: The Steady (Carnation)
4727 panel: INCARNATION
4728 - room: The Steady (Sunflower)
4729 panel: SUN
4730 - room: The Steady (Ruby)
4731 panel: BURY
4732 - room: The Steady (Plum)
4733 panel: LUMP
4734 - room: The Steady (Lime)
4735 panel: LIMELIGHT
4736 - room: The Steady (Lemon)
4737 panel: MELON
4738 - room: The Steady (Topaz)
4739 panel: TOP
4740 - room: The Steady (Orange)
4741 panel: BLUE
4742 - room: The Steady (Sapphire)
4743 panel: SAP
4744 - room: The Steady (Blueberry)
4745 panel: BLUE
4746 - room: The Steady (Amber)
4747 panel: ANTECHAMBER
4748 - room: The Steady (Emerald)
4749 panel: HERALD
4750 - room: The Steady (Amethyst)
4751 panel: PACIFIST
4752 - room: The Steady (Lilac)
4753 panel: LIE LACK
4754 - room: The Steady (Cherry)
4755 panel: HAIRY
4756 tag: forbid
4757 check: True
4758 achievement: The Steady
4759 doors:
4760 Reveal:
4761 event: True
4762 panels:
4763 - Achievement
4764 Knight Night (Outer Ring):
4765 entrances:
4766 Hidden Room:
4767 room: Hidden Room
4768 door: Knight Night Entrance
4769 Knight Night Exit: True
4770 panels:
4771 NIGHT:
4772 id: Appendix Room/Panel_night_knight
4773 colors: blue
4774 tag: homophone midblue
4775 copy_to_sign: sign7
4776 KNIGHT:
4777 id: Appendix Room/Panel_knight_night
4778 colors: red
4779 tag: homophone midred
4780 copy_to_sign: sign8
4781 BEE:
4782 id: Appendix Room/Panel_bee_be
4783 colors: red
4784 tag: homophone midred
4785 copy_to_sign: sign9
4786 NEW:
4787 id: Appendix Room/Panel_new_knew
4788 colors: blue
4789 tag: homophone midblue
4790 copy_to_sign: sign11
4791 FORE:
4792 id: Appendix Room/Panel_fore_for
4793 colors: red
4794 tag: homophone midred
4795 copy_to_sign: sign10
4796 TRUSTED (1):
4797 id: Appendix Room/Panel_trusted_trust
4798 colors: red
4799 tag: midred
4800 required_panel:
4801 room: Knight Night (Right Lower Segment)
4802 panel: BEFORE
4803 TRUSTED (2):
4804 id: Appendix Room/Panel_trusted_rusted
4805 colors: red
4806 tag: midred
4807 required_panel:
4808 room: Knight Night (Right Lower Segment)
4809 panel: BEFORE
4810 ENCRUSTED:
4811 id: Appendix Room/Panel_encrusted_rust
4812 colors: red
4813 tag: midred
4814 required_panel:
4815 - panel: TRUSTED (1)
4816 - panel: TRUSTED (2)
4817 ADJUST (1):
4818 id: Appendix Room/Panel_adjust_readjust
4819 colors: blue
4820 tag: midblue and phone
4821 required_panel:
4822 room: Knight Night (Right Lower Segment)
4823 panel: BE
4824 ADJUST (2):
4825 id: Appendix Room/Panel_adjust_adjusted
4826 colors: blue
4827 tag: midblue and phone
4828 required_panel:
4829 room: Knight Night (Right Lower Segment)
4830 panel: BE
4831 RIGHT:
4832 id: Appendix Room/Panel_right_right
4833 tag: midwhite
4834 required_panel:
4835 room: Knight Night (Right Lower Segment)
4836 panel: ADJUST
4837 TRUST:
4838 id: Appendix Room/Panel_trust_crust
4839 colors:
4840 - red
4841 - blue
4842 tag: mid red blue
4843 required_panel:
4844 - room: Knight Night (Right Lower Segment)
4845 panel: ADJUST
4846 - room: Knight Night (Right Lower Segment)
4847 panel: LEFT
4848 doors:
4849 Fore Door:
4850 event: True
4851 panels:
4852 - FORE
4853 New Door:
4854 event: True
4855 panels:
4856 - NEW
4857 To End:
4858 event: True
4859 panels:
4860 - RIGHT
4861 - room: Knight Night (Right Lower Segment)
4862 panel: LEFT
4863 Knight Night (Right Upper Segment):
4864 entrances:
4865 Knight Night Exit: True
4866 Knight Night (Outer Ring):
4867 room: Knight Night (Outer Ring)
4868 door: Fore Door
4869 Knight Night (Right Lower Segment):
4870 door: Segment Door
4871 panels:
4872 RUST (1):
4873 id: Appendix Room/Panel_rust_trust
4874 colors: blue
4875 tag: midblue
4876 required_panel:
4877 room: Knight Night (Outer Ring)
4878 panel: BEE
4879 RUST (2):
4880 id: Appendix Room/Panel_rust_crust
4881 colors: blue
4882 tag: midblue
4883 required_panel:
4884 room: Knight Night (Outer Ring)
4885 panel: BEE
4886 doors:
4887 Segment Door:
4888 event: True
4889 panels:
4890 - RUST (2)
4891 - room: Knight Night (Right Lower Segment)
4892 panel: BEFORE
4893 Knight Night (Right Lower Segment):
4894 entrances:
4895 Knight Night Exit: True
4896 Knight Night (Right Upper Segment):
4897 room: Knight Night (Right Upper Segment)
4898 door: Segment Door
4899 Knight Night (Outer Ring):
4900 room: Knight Night (Outer Ring)
4901 door: New Door
4902 panels:
4903 ADJUST:
4904 id: Appendix Room/Panel_adjust_readjusted
4905 colors: blue
4906 tag: midblue
4907 required_panel:
4908 - room: Knight Night (Outer Ring)
4909 panel: ADJUST (1)
4910 - room: Knight Night (Outer Ring)
4911 panel: ADJUST (2)
4912 BEFORE:
4913 id: Appendix Room/Panel_before_fore
4914 colors: red
4915 tag: midred and phone
4916 required_panel:
4917 room: Knight Night (Right Upper Segment)
4918 panel: RUST (1)
4919 BE:
4920 id: Appendix Room/Panel_be_before
4921 colors: blue
4922 tag: midblue and phone
4923 required_panel:
4924 room: Knight Night (Right Upper Segment)
4925 panel: RUST (1)
4926 LEFT:
4927 id: Appendix Room/Panel_left_left
4928 tag: midwhite
4929 required_panel:
4930 room: Knight Night (Outer Ring)
4931 panel: ENCRUSTED
4932 TRUST:
4933 id: Appendix Room/Panel_trust_crust_2
4934 colors: purple
4935 tag: midpurp
4936 required_panel:
4937 - room: Knight Night (Outer Ring)
4938 panel: ENCRUSTED
4939 - room: Knight Night (Outer Ring)
4940 panel: RIGHT
4941 Knight Night (Final):
4942 entrances:
4943 Knight Night Exit: True
4944 Knight Night (Outer Ring):
4945 room: Knight Night (Outer Ring)
4946 door: To End
4947 Knight Night (Right Upper Segment):
4948 room: Knight Night (Outer Ring)
4949 door: To End
4950 panels:
4951 TRUSTED:
4952 id: Appendix Room/Panel_trusted_readjusted
4953 colors: purple
4954 tag: midpurp
4955 doors:
4956 Exit:
4957 id:
4958 - Appendix Room Area Doors/Door_trusted_readjusted
4959 - Appendix Room Area Doors/Door_trusted_readjusted2
4960 - Appendix Room Area Doors/Door_trusted_readjusted3
4961 - Appendix Room Area Doors/Door_trusted_readjusted4
4962 - Appendix Room Area Doors/Door_trusted_readjusted5
4963 - Appendix Room Area Doors/Door_trusted_readjusted6
4964 - Appendix Room Area Doors/Door_trusted_readjusted7
4965 - Appendix Room Area Doors/Door_trusted_readjusted8
4966 - Appendix Room Area Doors/Door_trusted_readjusted9
4967 - Appendix Room Area Doors/Door_trusted_readjusted10
4968 - Appendix Room Area Doors/Door_trusted_readjusted11
4969 - Appendix Room Area Doors/Door_trusted_readjusted12
4970 - Appendix Room Area Doors/Door_trusted_readjusted13
4971 include_reduce: True
4972 location_name: Knight Night Room - TRUSTED
4973 item_name: Knight Night Room - Exit
4974 panels:
4975 - TRUSTED
4976 Knight Night Exit:
4977 entrances:
4978 Knight Night (Outer Ring):
4979 room: Knight Night (Final)
4980 door: Exit
4981 Orange Tower Third Floor:
4982 room: Knight Night (Final)
4983 door: Exit
4984 Outside The Initiated:
4985 room: Knight Night (Final)
4986 door: Exit
4987 panels:
4988 SEVEN (1):
4989 id: Backside Room/Panel_seven_seven_7
4990 tag: midwhite
4991 required_door:
4992 - room: Number Hunt
4993 door: Sevens
4994 SEVEN (2):
4995 id: Backside Room/Panel_seven_seven_3
4996 tag: midwhite
4997 required_door:
4998 - room: Number Hunt
4999 door: Sevens
5000 SEVEN (3):
5001 id: Backside Room/Panel_seven_seven_4
5002 tag: midwhite
5003 required_door:
5004 - room: Number Hunt
5005 door: Sevens
5006 DEAD END:
5007 id: Appendix Room/Panel_deadend_deadend
5008 tag: midwhite
5009 WARNER:
5010 id: Appendix Room/Panel_warner_corner
5011 colors: purple
5012 tag: toppurp
5013 The Artistic (Smiley):
5014 entrances:
5015 Dead End Area:
5016 painting: True
5017 Crossroads:
5018 painting: True
5019 Hot Crusts Area:
5020 painting: True
5021 Outside The Initiated:
5022 painting: True
5023 Directional Gallery:
5024 painting: True
5025 Number Hunt:
5026 room: Number Hunt
5027 door: Eights
5028 painting: True
5029 Art Gallery:
5030 painting: True
5031 The Eyes They See:
5032 painting: True
5033 The Artistic (Panda):
5034 door: Door to Panda
5035 The Artistic (Apple):
5036 room: The Artistic (Apple)
5037 door: Door to Smiley
5038 Elements Area:
5039 room: Hallway Room (4)
5040 door: Exit
5041 panels:
5042 Achievement:
5043 id: Countdown Panels/Panel_artistic_artistic
5044 colors:
5045 - red
5046 - black
5047 - yellow
5048 - blue
5049 tag: forbid
5050 required_room:
5051 - The Artistic (Panda)
5052 - The Artistic (Apple)
5053 - The Artistic (Lattice)
5054 check: True
5055 achievement: The Artistic
5056 FINE:
5057 id: Ceiling Room/Panel_yellow_top_5
5058 colors:
5059 - yellow
5060 - blue
5061 tag: yellow top blue bot
5062 subtag: top
5063 link: yxu KNIFE
5064 BLADE:
5065 id: Ceiling Room/Panel_blue_bot_5
5066 colors:
5067 - blue
5068 - yellow
5069 tag: yellow top blue bot
5070 subtag: bot
5071 link: yxu KNIFE
5072 RED:
5073 id: Ceiling Room/Panel_blue_top_6
5074 colors:
5075 - blue
5076 - yellow
5077 tag: blue top yellow mid
5078 subtag: top
5079 link: uyx BREAD
5080 BEARD:
5081 id: Ceiling Room/Panel_yellow_mid_6
5082 colors:
5083 - yellow
5084 - blue
5085 tag: blue top yellow mid
5086 subtag: mid
5087 link: uyx BREAD
5088 ICE:
5089 id: Ceiling Room/Panel_blue_mid_7
5090 colors:
5091 - blue
5092 - yellow
5093 tag: blue mid yellow bot
5094 subtag: mid
5095 link: xuy SPICE
5096 ROOT:
5097 id: Ceiling Room/Panel_yellow_bot_7
5098 colors:
5099 - yellow
5100 - blue
5101 tag: blue mid yellow bot
5102 subtag: bot
5103 link: xuy SPICE
5104 doors:
5105 Door to Panda:
5106 id:
5107 - Ceiling Room Doors/Door_blue
5108 - Ceiling Room Doors/Door_blue2
5109 location_name: The Artistic - Smiley and Panda
5110 group: Artistic Doors
5111 panels:
5112 - FINE
5113 - BLADE
5114 - RED
5115 - BEARD
5116 - ICE
5117 - ROOT
5118 - room: The Artistic (Panda)
5119 panel: EYE (Top)
5120 - room: The Artistic (Panda)
5121 panel: EYE (Bottom)
5122 - room: The Artistic (Panda)
5123 panel: LADYLIKE
5124 - room: The Artistic (Panda)
5125 panel: WATER
5126 - room: The Artistic (Panda)
5127 panel: OURS
5128 - room: The Artistic (Panda)
5129 panel: DAYS
5130 - room: The Artistic (Panda)
5131 panel: NIGHTTIME
5132 - room: The Artistic (Panda)
5133 panel: NIGHT
5134 paintings:
5135 - id: smile_painting_9
5136 orientation: north
5137 exit_only: True
5138 The Artistic (Panda):
5139 entrances:
5140 Orange Tower Sixth Floor:
5141 painting: True
5142 Outside The Agreeable:
5143 painting: True
5144 The Artistic (Smiley):
5145 room: The Artistic (Smiley)
5146 door: Door to Panda
5147 The Artistic (Lattice):
5148 door: Door to Lattice
5149 panels:
5150 EYE (Top):
5151 id: Ceiling Room/Panel_blue_top_1
5152 colors:
5153 - blue
5154 - red
5155 tag: blue top red bot
5156 subtag: top
5157 link: uxr IRIS
5158 EYE (Bottom):
5159 id: Ceiling Room/Panel_red_bot_1
5160 colors:
5161 - red
5162 - blue
5163 tag: blue top red bot
5164 subtag: bot
5165 link: uxr IRIS
5166 LADYLIKE:
5167 id: Ceiling Room/Panel_red_mid_2
5168 colors:
5169 - red
5170 - blue
5171 tag: red mid blue bot
5172 subtag: mid
5173 link: xru LAKE
5174 WATER:
5175 id: Ceiling Room/Panel_blue_bot_2
5176 colors:
5177 - blue
5178 - red
5179 tag: red mid blue bot
5180 subtag: bot
5181 link: xru LAKE
5182 OURS:
5183 id: Ceiling Room/Panel_blue_mid_3
5184 colors:
5185 - blue
5186 - red
5187 tag: blue mid red bot
5188 subtag: mid
5189 link: xur HOURS
5190 DAYS:
5191 id: Ceiling Room/Panel_red_bot_3
5192 colors:
5193 - red
5194 - blue
5195 tag: blue mid red bot
5196 subtag: bot
5197 link: xur HOURS
5198 NIGHTTIME:
5199 id: Ceiling Room/Panel_red_top_4
5200 colors:
5201 - red
5202 - blue
5203 tag: red top mid blue
5204 subtag: top
5205 link: rux KNIGHT
5206 NIGHT:
5207 id: Ceiling Room/Panel_blue_mid_4
5208 colors:
5209 - blue
5210 - red
5211 tag: red top mid blue
5212 subtag: mid
5213 link: rux KNIGHT
5214 doors:
5215 Door to Lattice:
5216 id:
5217 - Ceiling Room Doors/Door_red
5218 - Ceiling Room Doors/Door_red2
5219 location_name: The Artistic - Panda and Lattice
5220 group: Artistic Doors
5221 panels:
5222 - EYE (Top)
5223 - EYE (Bottom)
5224 - LADYLIKE
5225 - WATER
5226 - OURS
5227 - DAYS
5228 - NIGHTTIME
5229 - NIGHT
5230 - room: The Artistic (Lattice)
5231 panel: POSH
5232 - room: The Artistic (Lattice)
5233 panel: MALL
5234 - room: The Artistic (Lattice)
5235 panel: DEICIDE
5236 - room: The Artistic (Lattice)
5237 panel: WAVER
5238 - room: The Artistic (Lattice)
5239 panel: REPAID
5240 - room: The Artistic (Lattice)
5241 panel: BABY
5242 - room: The Artistic (Lattice)
5243 panel: LOBE
5244 - room: The Artistic (Lattice)
5245 panel: BOWELS
5246 paintings:
5247 - id: panda_painting_3
5248 exit_only: True
5249 orientation: south
5250 required_when_no_doors: True
5251 The Artistic (Lattice):
5252 entrances:
5253 Directional Gallery:
5254 painting: True
5255 The Artistic (Panda):
5256 room: The Artistic (Panda)
5257 door: Door to Lattice
5258 The Artistic (Apple):
5259 door: Door to Apple
5260 panels:
5261 POSH:
5262 id: Ceiling Room/Panel_black_top_12
5263 colors:
5264 - black
5265 - red
5266 tag: black top red bot
5267 subtag: top
5268 link: bxr SHOP
5269 MALL:
5270 id: Ceiling Room/Panel_red_bot_12
5271 colors:
5272 - red
5273 - black
5274 tag: black top red bot
5275 subtag: bot
5276 link: bxr SHOP
5277 DEICIDE:
5278 id: Ceiling Room/Panel_red_top_13
5279 colors:
5280 - red
5281 - black
5282 tag: red top black bot
5283 subtag: top
5284 link: rxb DECIDE
5285 WAVER:
5286 id: Ceiling Room/Panel_black_bot_13
5287 colors:
5288 - black
5289 - red
5290 tag: red top black bot
5291 subtag: bot
5292 link: rxb DECIDE
5293 REPAID:
5294 id: Ceiling Room/Panel_black_mid_14
5295 colors:
5296 - black
5297 - red
5298 tag: black mid red bot
5299 subtag: mid
5300 link: xbr DIAPER
5301 BABY:
5302 id: Ceiling Room/Panel_red_bot_14
5303 colors:
5304 - red
5305 - black
5306 tag: black mid red bot
5307 subtag: bot
5308 link: xbr DIAPER
5309 LOBE:
5310 id: Ceiling Room/Panel_black_top_15
5311 colors:
5312 - black
5313 - red
5314 tag: black top red mid
5315 subtag: top
5316 link: brx BOWL
5317 BOWELS:
5318 id: Ceiling Room/Panel_red_mid_15
5319 colors:
5320 - red
5321 - black
5322 tag: black top red mid
5323 subtag: mid
5324 link: brx BOWL
5325 doors:
5326 Door to Apple:
5327 id:
5328 - Ceiling Room Doors/Door_black
5329 - Ceiling Room Doors/Door_black2
5330 location_name: The Artistic - Lattice and Apple
5331 group: Artistic Doors
5332 panels:
5333 - POSH
5334 - MALL
5335 - DEICIDE
5336 - WAVER
5337 - REPAID
5338 - BABY
5339 - LOBE
5340 - BOWELS
5341 - room: The Artistic (Apple)
5342 panel: SPRIG
5343 - room: The Artistic (Apple)
5344 panel: RELEASES
5345 - room: The Artistic (Apple)
5346 panel: MUCH
5347 - room: The Artistic (Apple)
5348 panel: FISH
5349 - room: The Artistic (Apple)
5350 panel: MASK
5351 - room: The Artistic (Apple)
5352 panel: HILL
5353 - room: The Artistic (Apple)
5354 panel: TINE
5355 - room: The Artistic (Apple)
5356 panel: THING
5357 paintings:
5358 - id: boxes_painting2
5359 orientation: south
5360 exit_only: True
5361 required_when_no_doors: True
5362 The Artistic (Apple):
5363 entrances:
5364 Orange Tower Sixth Floor:
5365 painting: True
5366 Directional Gallery:
5367 painting: True
5368 The Artistic (Lattice):
5369 room: The Artistic (Lattice)
5370 door: Door to Apple
5371 The Artistic (Smiley):
5372 door: Door to Smiley
5373 panels:
5374 SPRIG:
5375 id: Ceiling Room/Panel_yellow_mid_8
5376 colors:
5377 - yellow
5378 - black
5379 tag: yellow mid black bot
5380 subtag: mid
5381 link: xyb GRIPS
5382 RELEASES:
5383 id: Ceiling Room/Panel_black_bot_8
5384 colors:
5385 - black
5386 - yellow
5387 tag: yellow mid black bot
5388 subtag: bot
5389 link: xyb GRIPS
5390 MUCH:
5391 id: Ceiling Room/Panel_black_top_9
5392 colors:
5393 - black
5394 - yellow
5395 tag: black top yellow bot
5396 subtag: top
5397 link: bxy CHUM
5398 FISH:
5399 id: Ceiling Room/Panel_yellow_bot_9
5400 colors:
5401 - yellow
5402 - black
5403 tag: black top yellow bot
5404 subtag: bot
5405 link: bxy CHUM
5406 MASK:
5407 id: Ceiling Room/Panel_yellow_top_10
5408 colors:
5409 - yellow
5410 - black
5411 tag: yellow top black bot
5412 subtag: top
5413 link: yxb CHASM
5414 HILL:
5415 id: Ceiling Room/Panel_black_bot_10
5416 colors:
5417 - black
5418 - yellow
5419 tag: yellow top black bot
5420 subtag: bot
5421 link: yxb CHASM
5422 TINE:
5423 id: Ceiling Room/Panel_black_top_11
5424 colors:
5425 - black
5426 - yellow
5427 tag: black top yellow mid
5428 subtag: top
5429 link: byx NIGHT
5430 THING:
5431 id: Ceiling Room/Panel_yellow_mid_11
5432 colors:
5433 - yellow
5434 - black
5435 tag: black top yellow mid
5436 subtag: mid
5437 link: byx NIGHT
5438 doors:
5439 Door to Smiley:
5440 id:
5441 - Ceiling Room Doors/Door_yellow
5442 - Ceiling Room Doors/Door_yellow2
5443 location_name: The Artistic - Apple and Smiley
5444 group: Artistic Doors
5445 panels:
5446 - SPRIG
5447 - RELEASES
5448 - MUCH
5449 - FISH
5450 - MASK
5451 - HILL
5452 - TINE
5453 - THING
5454 - room: The Artistic (Smiley)
5455 panel: FINE
5456 - room: The Artistic (Smiley)
5457 panel: BLADE
5458 - room: The Artistic (Smiley)
5459 panel: RED
5460 - room: The Artistic (Smiley)
5461 panel: BEARD
5462 - room: The Artistic (Smiley)
5463 panel: ICE
5464 - room: The Artistic (Smiley)
5465 panel: ROOT
5466 paintings:
5467 - id: cherry_painting3
5468 orientation: north
5469 exit_only: True
5470 required_when_no_doors: True
5471 The Artistic (Hint Room):
5472 entrances:
5473 The Artistic (Lattice):
5474 room: The Artistic (Lattice)
5475 door: Door to Apple
5476 panels:
5477 THEME:
5478 id: Ceiling Room/Panel_answer_1
5479 colors: red
5480 tag: midred
5481 PAINTS:
5482 id: Ceiling Room/Panel_answer_2
5483 colors: yellow
5484 tag: botyellow
5485 I:
5486 id: Ceiling Room/Panel_answer_3
5487 colors: blue
5488 tag: midblue
5489 KIT:
5490 id: Ceiling Room/Panel_answer_4
5491 colors: black
5492 tag: topblack
5493 The Discerning:
5494 entrances:
5495 Crossroads:
5496 room: Crossroads
5497 door: Discerning Entrance
5498 panels:
5499 Achievement:
5500 id: Countdown Panels/Panel_discerning_scramble
5501 colors: yellow
5502 tag: forbid
5503 check: True
5504 achievement: The Discerning
5505 HITS:
5506 id: Sun Room/Panel_hits_this
5507 colors: yellow
5508 tag: midyellow
5509 WARRED:
5510 id: Sun Room/Panel_warred_drawer
5511 colors: yellow
5512 tag: double midyellow
5513 subtag: left
5514 link: ana DRAWER
5515 REDRAW:
5516 id: Sun Room/Panel_redraw_drawer
5517 colors: yellow
5518 tag: double midyellow
5519 subtag: right
5520 link: ana DRAWER
5521 ADDER:
5522 id: Sun Room/Panel_adder_dread
5523 colors: yellow
5524 tag: midyellow
5525 LAUGHTERS:
5526 id: Sun Room/Panel_laughters_slaughter
5527 colors: yellow
5528 tag: midyellow
5529 STONE:
5530 id: Sun Room/Panel_stone_notes
5531 colors: yellow
5532 tag: double midyellow
5533 subtag: left
5534 link: ana NOTES
5535 ONSET:
5536 id: Sun Room/Panel_onset_notes
5537 colors: yellow
5538 tag: double midyellow
5539 subtag: right
5540 link: ana NOTES
5541 RAT:
5542 id: Sun Room/Panel_rat_art
5543 colors: yellow
5544 tag: midyellow
5545 DUSTY:
5546 id: Sun Room/Panel_dusty_study
5547 colors: yellow
5548 tag: midyellow
5549 ARTS:
5550 id: Sun Room/Panel_arts_star
5551 colors: yellow
5552 tag: double midyellow
5553 subtag: left
5554 link: ana STAR
5555 TSAR:
5556 id: Sun Room/Panel_tsar_star
5557 colors: yellow
5558 tag: double midyellow
5559 subtag: right
5560 link: ana STAR
5561 STATE:
5562 id: Sun Room/Panel_state_taste
5563 colors: yellow
5564 tag: midyellow
5565 REACT:
5566 id: Sun Room/Panel_react_trace
5567 colors: yellow
5568 tag: midyellow
5569 DEAR:
5570 id: Sun Room/Panel_dear_read
5571 colors: yellow
5572 tag: double midyellow
5573 subtag: left
5574 link: ana READ
5575 DARE:
5576 id: Sun Room/Panel_dare_read
5577 colors: yellow
5578 tag: double midyellow
5579 subtag: right
5580 link: ana READ
5581 SEAM:
5582 id: Sun Room/Panel_seam_same
5583 colors: yellow
5584 tag: midyellow
5585 The Eyes They See:
5586 entrances:
5587 Crossroads:
5588 room: Crossroads
5589 door: Eye Wall
5590 painting: True
5591 Wondrous Lobby:
5592 door: Exit
5593 Directional Gallery: True
5594 panels:
5595 NEAR:
5596 id: Shuffle Room/Panel_near_near
5597 tag: midwhite
5598 EIGHT:
5599 id: Backside Room/Panel_eight_eight_4
5600 tag: midwhite
5601 required_door:
5602 room: Number Hunt
5603 door: Eights
5604 doors:
5605 Exit:
5606 id: Count Up Room Area Doors/Door_near_near
5607 group: Crossroads Doors
5608 panels:
5609 - NEAR
5610 paintings:
5611 - id: eye_painting_2
5612 orientation: west
5613 - id: smile_painting_2
5614 orientation: north
5615 Far Window:
5616 entrances:
5617 Crossroads:
5618 room: Crossroads
5619 door: Eye Wall
5620 The Eyes They See: True
5621 panels:
5622 FAR:
5623 id: Shuffle Room/Panel_far_far
5624 tag: midwhite
5625 Wondrous Lobby:
5626 entrances:
5627 Directional Gallery: True
5628 The Eyes They See:
5629 room: The Eyes They See
5630 door: Exit
5631 paintings:
5632 - id: arrows_painting_5
5633 orientation: east
5634 Outside The Wondrous:
5635 entrances:
5636 Wondrous Lobby: True
5637 The Wondrous (Doorknob):
5638 door: Wondrous Entrance
5639 The Wondrous (Window): True
5640 panels:
5641 SHRINK:
5642 id: Wonderland Room/Panel_shrink_shrink
5643 tag: midwhite
5644 doors:
5645 Wondrous Entrance:
5646 id: Red Blue Purple Room Area Doors/Door_wonderland
5647 item_name: The Wondrous - Entrance
5648 panels:
5649 - SHRINK
5650 The Wondrous (Doorknob):
5651 entrances:
5652 Outside The Wondrous:
5653 room: Outside The Wondrous
5654 door: Wondrous Entrance
5655 Starting Room:
5656 door: Painting Shortcut
5657 painting: True
5658 The Wondrous (Chandelier):
5659 painting: True
5660 The Wondrous (Table): True # There is a way that doesn't use the painting
5661 doors:
5662 Painting Shortcut:
5663 painting_id:
5664 - symmetry_painting_a_starter
5665 - arrows_painting2
5666 skip_location: True
5667 item_name: Starting Room - Symmetry Painting
5668 panels:
5669 - room: Outside The Wondrous
5670 panel: SHRINK
5671 paintings:
5672 - id: symmetry_painting_a_1
5673 orientation: east
5674 exit_only: True
5675 - id: symmetry_painting_b_1
5676 orientation: south
5677 The Wondrous (Bookcase):
5678 entrances:
5679 The Wondrous (Doorknob): True
5680 panels:
5681 CASE:
5682 id: Wonderland Room/Panel_case_bookcase
5683 colors: blue
5684 tag: midblue
5685 paintings:
5686 - id: symmetry_painting_a_3
5687 orientation: west
5688 exit_only: True
5689 - id: symmetry_painting_b_3
5690 disable: True
5691 The Wondrous (Chandelier):
5692 entrances:
5693 The Wondrous (Bookcase): True
5694 panels:
5695 CANDLE HEIR:
5696 id: Wonderland Room/Panel_candleheir_chandelier
5697 colors: yellow
5698 tag: midyellow
5699 paintings:
5700 - id: symmetry_painting_a_5
5701 orientation: east
5702 - id: symmetry_painting_a_5
5703 disable: True
5704 The Wondrous (Window):
5705 entrances:
5706 The Wondrous (Bookcase): True
5707 panels:
5708 GLASS:
5709 id: Wonderland Room/Panel_glass_window
5710 colors: brown
5711 tag: botbrown
5712 paintings:
5713 - id: symmetry_painting_b_4
5714 orientation: north
5715 exit_only: True
5716 - id: symmetry_painting_a_4
5717 disable: True
5718 The Wondrous (Table):
5719 entrances:
5720 The Wondrous (Doorknob):
5721 painting: True
5722 The Wondrous:
5723 painting: True
5724 panels:
5725 WOOD:
5726 id: Wonderland Room/Panel_wood_table
5727 colors: brown
5728 tag: botbrown
5729 BROOK NOD:
5730 # This panel, while physically being in the first room, is facing upward
5731 # and is only really solvable while standing on the windowsill, which is
5732 # a location you can only get to from Table.
5733 id: Wonderland Room/Panel_brooknod_doorknob
5734 colors: yellow
5735 tag: midyellow
5736 paintings:
5737 - id: symmetry_painting_a_2
5738 orientation: west
5739 - id: symmetry_painting_b_2
5740 orientation: south
5741 exit_only: True
5742 required: True
5743 The Wondrous:
5744 entrances:
5745 The Wondrous (Table): True
5746 Arrow Garden:
5747 door: Exit
5748 panels:
5749 FIREPLACE:
5750 id: Wonderland Room/Panel_fireplace_fire
5751 colors: red
5752 tag: midred
5753 Achievement:
5754 id: Countdown Panels/Panel_wondrous_wondrous
5755 required_panel:
5756 - panel: FIREPLACE
5757 - room: The Wondrous (Table)
5758 panel: BROOK NOD
5759 - room: The Wondrous (Bookcase)
5760 panel: CASE
5761 - room: The Wondrous (Chandelier)
5762 panel: CANDLE HEIR
5763 - room: The Wondrous (Window)
5764 panel: GLASS
5765 - room: The Wondrous (Table)
5766 panel: WOOD
5767 tag: forbid
5768 achievement: The Wondrous
5769 doors:
5770 Exit:
5771 id: Red Blue Purple Room Area Doors/Door_wonderland_exit
5772 painting_id: arrows_painting_9
5773 include_reduce: True
5774 panels:
5775 - Achievement
5776 paintings:
5777 - id: arrows_painting_9
5778 enter_only: True
5779 orientation: south
5780 move: True
5781 required_door:
5782 door: Exit
5783 req_blocked_when_no_doors: True # the wondrous (table) in vanilla doors
5784 - id: symmetry_painting_a_6
5785 orientation: west
5786 exit_only: True
5787 - id: symmetry_painting_b_6
5788 orientation: north
5789 req_blocked_when_no_doors: True # the wondrous (table) in vanilla doors
5790 Arrow Garden:
5791 entrances:
5792 The Wondrous:
5793 room: The Wondrous
5794 door: Exit
5795 Roof: True
5796 panels:
5797 MASTERY:
5798 id: Master Room/Panel_mastery_mastery4
5799 tag: midwhite
5800 required_door:
5801 room: Orange Tower Seventh Floor
5802 door: Mastery
5803 SHARP:
5804 id: Open Areas/Panel_rainy_rainbow2
5805 tag: midwhite
5806 paintings:
5807 - id: flower_painting_6
5808 orientation: south
5809 Hallway Room (2):
5810 entrances:
5811 Outside The Agreeable:
5812 room: Outside The Agreeable
5813 door: Hallway Door
5814 Elements Area: True
5815 panels:
5816 WISE:
5817 id: Hallway Room/Panel_counterclockwise_1
5818 colors: blue
5819 tag: quad mid blue
5820 link: qmb COUNTERCLOCKWISE
5821 CLOCK:
5822 id: Hallway Room/Panel_counterclockwise_2
5823 colors: blue
5824 tag: quad mid blue
5825 link: qmb COUNTERCLOCKWISE
5826 ER:
5827 id: Hallway Room/Panel_counterclockwise_3
5828 colors: blue
5829 tag: quad mid blue
5830 link: qmb COUNTERCLOCKWISE
5831 COUNT:
5832 id: Hallway Room/Panel_counterclockwise_4
5833 colors: blue
5834 tag: quad mid blue
5835 link: qmb COUNTERCLOCKWISE
5836 doors:
5837 Exit:
5838 id: Red Blue Purple Room Area Doors/Door_room_3
5839 location_name: Hallway Room - Second Room
5840 group: Hallway Room Doors
5841 panels:
5842 - WISE
5843 - CLOCK
5844 - ER
5845 - COUNT
5846 Hallway Room (3):
5847 entrances:
5848 Hallway Room (2):
5849 room: Hallway Room (2)
5850 door: Exit
5851 # No entrance from Elements Area. The winding hallway does not connect.
5852 panels:
5853 TRANCE:
5854 id: Hallway Room/Panel_transformation_1
5855 colors: blue
5856 tag: quad top blue
5857 link: qtb TRANSFORMATION
5858 FORM:
5859 id: Hallway Room/Panel_transformation_2
5860 colors: blue
5861 tag: quad top blue
5862 link: qtb TRANSFORMATION
5863 A:
5864 id: Hallway Room/Panel_transformation_3
5865 colors: blue
5866 tag: quad top blue
5867 link: qtb TRANSFORMATION
5868 SHUN:
5869 id: Hallway Room/Panel_transformation_4
5870 colors: blue
5871 tag: quad top blue
5872 link: qtb TRANSFORMATION
5873 doors:
5874 Exit:
5875 id: Red Blue Purple Room Area Doors/Door_room_4
5876 location_name: Hallway Room - Third Room
5877 group: Hallway Room Doors
5878 panels:
5879 - TRANCE
5880 - FORM
5881 - A
5882 - SHUN
5883 Hallway Room (4):
5884 entrances:
5885 Hallway Room (3):
5886 room: Hallway Room (3)
5887 door: Exit
5888 Elements Area: True
5889 panels:
5890 WHEEL:
5891 id: Hallway Room/Panel_room_5
5892 colors: blue
5893 tag: full stack blue
5894 doors:
5895 Exit:
5896 id:
5897 - Red Blue Purple Room Area Doors/Door_room_5
5898 - Red Blue Purple Room Area Doors/Door_room_6 # this is the connection to The Artistic
5899 group: Hallway Room Doors
5900 location_name: Hallway Room - Fourth Room
5901 panels:
5902 - WHEEL
5903 include_reduce: True
5904 Elements Area:
5905 entrances:
5906 Roof: True
5907 Hallway Room (4):
5908 room: Hallway Room (4)
5909 door: Exit
5910 The Artistic (Smiley):
5911 room: Hallway Room (4)
5912 door: Exit
5913 panels:
5914 A:
5915 id: Strand Room/Panel_a_strands
5916 colors: blue
5917 tag: forbid
5918 NINE:
5919 id: Backside Room/Panel_nine_nine_7
5920 tag: midwhite
5921 required_door:
5922 room: Number Hunt
5923 door: Nines
5924 UNDISTRACTED:
5925 id: Open Areas/Panel_undistracted
5926 check: True
5927 exclude_reduce: True
5928 tag: midwhite
5929 MASTERY:
5930 id: Master Room/Panel_mastery_mastery13
5931 tag: midwhite
5932 required_door:
5933 room: Orange Tower Seventh Floor
5934 door: Mastery
5935 EARTH:
5936 id: Cross Room/Panel_earth_earth
5937 tag: midwhite
5938 WATER:
5939 id: Cross Room/Panel_water_water
5940 tag: midwhite
5941 AIR:
5942 id: Cross Room/Panel_air_air
5943 tag: midwhite
5944 paintings:
5945 - id: south_afar
5946 orientation: south
5947 Outside The Wanderer:
5948 entrances:
5949 Orange Tower First Floor:
5950 door: Tower Entrance
5951 Rhyme Room (Cross):
5952 room: Rhyme Room (Cross)
5953 door: Exit
5954 Roof: True
5955 panels:
5956 WANDERLUST:
5957 id: Tower Room/Panel_wanderlust_1234567890
5958 colors: orange
5959 tag: midorange
5960 doors:
5961 Wanderer Entrance:
5962 id: Tower Room Area Doors/Door_wanderer_entrance
5963 item_name: The Wanderer - Entrance
5964 panels:
5965 - WANDERLUST
5966 Tower Entrance:
5967 id: Tower Room Area Doors/Door_wanderlust_start
5968 skip_location: True
5969 panels:
5970 - room: The Wanderer
5971 panel: Achievement
5972 The Wanderer:
5973 entrances:
5974 Outside The Wanderer:
5975 room: Outside The Wanderer
5976 door: Wanderer Entrance
5977 panels:
5978 Achievement:
5979 id: Countdown Panels/Panel_1234567890_wanderlust
5980 colors: orange
5981 check: True
5982 tag: forbid
5983 achievement: The Wanderer
5984 "7890":
5985 id: Orange Room/Panel_lust
5986 colors: orange
5987 tag: midorange
5988 "6524":
5989 id: Orange Room/Panel_read
5990 colors: orange
5991 tag: midorange
5992 "951":
5993 id: Orange Room/Panel_sew
5994 colors: orange
5995 tag: midorange
5996 "4524":
5997 id: Orange Room/Panel_dead
5998 colors: orange
5999 tag: midorange
6000 LEARN:
6001 id: Orange Room/Panel_learn
6002 colors: orange
6003 tag: midorange
6004 DUST:
6005 id: Orange Room/Panel_dust
6006 colors: orange
6007 tag: midorange
6008 STAR:
6009 id: Orange Room/Panel_star
6010 colors: orange
6011 tag: midorange
6012 WANDER:
6013 id: Orange Room/Panel_wander
6014 colors: orange
6015 tag: midorange
6016 Art Gallery:
6017 entrances:
6018 Orange Tower Third Floor: True
6019 Art Gallery (Second Floor): True
6020 Art Gallery (Third Floor): True
6021 Art Gallery (Fourth Floor): True
6022 Orange Tower Fifth Floor:
6023 door: Exit
6024 panels:
6025 EIGHT:
6026 id: Backside Room/Panel_eight_eight_6
6027 tag: midwhite
6028 required_door:
6029 room: Number Hunt
6030 door: Eights
6031 EON:
6032 id: Painting Room/Panel_eon_one
6033 colors: yellow
6034 tag: midyellow
6035 TRUSTWORTHY:
6036 id: Painting Room/Panel_to_two
6037 colors: red
6038 tag: midred
6039 FREE:
6040 id: Painting Room/Panel_free_three
6041 colors: purple
6042 tag: midpurp
6043 OUR:
6044 id: Painting Room/Panel_our_four
6045 colors: blue
6046 tag: midblue
6047 ONE ROAD MANY TURNS:
6048 id: Painting Room/Panel_order_onepathmanyturns
6049 tag: forbid
6050 colors:
6051 - yellow
6052 - blue
6053 - gray
6054 - brown
6055 - orange
6056 required_door:
6057 door: Fifth Floor
6058 doors:
6059 Second Floor:
6060 painting_id:
6061 - scenery_painting_2b
6062 - scenery_painting_2c
6063 skip_location: True
6064 panels:
6065 - EON
6066 First Floor Puzzles:
6067 skip_item: True
6068 location_name: Art Gallery - First Floor Puzzles
6069 panels:
6070 - EON
6071 - TRUSTWORTHY
6072 - FREE
6073 - OUR
6074 Third Floor:
6075 painting_id:
6076 - scenery_painting_3b
6077 - scenery_painting_3c
6078 skip_location: True
6079 panels:
6080 - room: Art Gallery (Second Floor)
6081 panel: PATH
6082 Fourth Floor:
6083 painting_id:
6084 - scenery_painting_4b
6085 - scenery_painting_4c
6086 skip_location: True
6087 panels:
6088 - room: Art Gallery (Third Floor)
6089 panel: ANY
6090 Fifth Floor:
6091 id: Tower Room Area Doors/Door_painting_backroom
6092 painting_id:
6093 - scenery_painting_5b
6094 - scenery_painting_5c
6095 skip_location: True
6096 panels:
6097 - room: Art Gallery (Fourth Floor)
6098 panel: SEND - USE
6099 Exit:
6100 id: Tower Room Area Doors/Door_painting_exit
6101 include_reduce: True
6102 panels:
6103 - ONE ROAD MANY TURNS
6104 paintings:
6105 - id: smile_painting_3
6106 orientation: west
6107 - id: flower_painting_2
6108 orientation: east
6109 - id: scenery_painting_0a
6110 orientation: north
6111 - id: map_painting
6112 orientation: east
6113 - id: fruitbowl_painting4
6114 orientation: south
6115 progression:
6116 Progressive Art Gallery:
6117 - Second Floor
6118 - Third Floor
6119 - Fourth Floor
6120 - Fifth Floor
6121 - Exit
6122 Art Gallery (Second Floor):
6123 entrances:
6124 Art Gallery:
6125 room: Art Gallery
6126 door: Second Floor
6127 panels:
6128 HOUSE:
6129 id: Painting Room/Panel_house_neighborhood
6130 colors: blue
6131 tag: botblue
6132 PATH:
6133 id: Painting Room/Panel_path_road
6134 colors: brown
6135 tag: botbrown
6136 PARK:
6137 id: Painting Room/Panel_park_drive
6138 colors: black
6139 tag: botblack
6140 CARRIAGE:
6141 id: Painting Room/Panel_carriage_horse
6142 colors: red
6143 tag: botred
6144 doors:
6145 Puzzles:
6146 skip_item: True
6147 location_name: Art Gallery - Second Floor Puzzles
6148 panels:
6149 - HOUSE
6150 - PATH
6151 - PARK
6152 - CARRIAGE
6153 Art Gallery (Third Floor):
6154 entrances:
6155 Art Gallery:
6156 room: Art Gallery
6157 door: Third Floor
6158 panels:
6159 AN:
6160 id: Painting Room/Panel_an_many
6161 colors: blue
6162 tag: midblue
6163 MAY:
6164 id: Painting Room/Panel_may_many
6165 colors: blue
6166 tag: midblue
6167 ANY:
6168 id: Painting Room/Panel_any_many
6169 colors: blue
6170 tag: midblue
6171 MAN:
6172 id: Painting Room/Panel_man_many
6173 colors: blue
6174 tag: midblue
6175 doors:
6176 Puzzles:
6177 skip_item: True
6178 location_name: Art Gallery - Third Floor Puzzles
6179 panels:
6180 - AN
6181 - MAY
6182 - ANY
6183 - MAN
6184 Art Gallery (Fourth Floor):
6185 entrances:
6186 Art Gallery:
6187 room: Art Gallery
6188 door: Fourth Floor
6189 panels:
6190 URNS:
6191 id: Painting Room/Panel_urns_turns
6192 colors: blue
6193 tag: midblue
6194 LEARNS:
6195 id: Painting Room/Panel_learns_turns
6196 colors: purple
6197 tag: midpurp
6198 RUNTS:
6199 id: Painting Room/Panel_runts_turns
6200 colors: yellow
6201 tag: midyellow
6202 SEND - USE:
6203 id: Painting Room/Panel_send_use_turns
6204 colors: orange
6205 tag: midorange
6206 TRUST:
6207 id: Painting Room/Panel_trust_06890
6208 colors: orange
6209 tag: midorange
6210 "062459":
6211 id: Painting Room/Panel_06890_trust
6212 colors: orange
6213 tag: midorange
6214 doors:
6215 Puzzles:
6216 skip_item: True
6217 location_name: Art Gallery - Fourth Floor Puzzles
6218 panels:
6219 - URNS
6220 - LEARNS
6221 - RUNTS
6222 - SEND - USE
6223 - TRUST
6224 - "062459"
6225 Rhyme Room (Smiley):
6226 entrances:
6227 Orange Tower Third Floor:
6228 room: Orange Tower Third Floor
6229 door: Rhyme Room Entrance
6230 Rhyme Room (Circle):
6231 room: Rhyme Room (Circle)
6232 door: Door to Smiley
6233 Rhyme Room (Cross): True # one-way
6234 panels:
6235 LOANS:
6236 id: Double Room/Panel_bones_rhyme
6237 colors: purple
6238 tag: syn rhyme
6239 subtag: top
6240 link: rhyme BONES
6241 SKELETON:
6242 id: Double Room/Panel_bones_syn
6243 tag: syn rhyme
6244 subtag: bot
6245 link: rhyme BONES
6246 REPENTANCE:
6247 id: Double Room/Panel_sentence_rhyme
6248 colors: purple
6249 tag: whole rhyme
6250 subtag: top
6251 link: rhyme SENTENCE
6252 WORD:
6253 id: Double Room/Panel_sentence_whole
6254 colors: blue
6255 tag: whole rhyme
6256 subtag: bot
6257 link: rhyme SENTENCE
6258 SCHEME:
6259 id: Double Room/Panel_dream_rhyme
6260 colors: purple
6261 tag: syn rhyme
6262 subtag: top
6263 link: rhyme DREAM
6264 FANTASY:
6265 id: Double Room/Panel_dream_syn
6266 tag: syn rhyme
6267 subtag: bot
6268 link: rhyme DREAM
6269 HISTORY:
6270 id: Double Room/Panel_mystery_rhyme
6271 colors: purple
6272 tag: syn rhyme
6273 subtag: top
6274 link: rhyme MYSTERY
6275 SECRET:
6276 id: Double Room/Panel_mystery_syn
6277 tag: syn rhyme
6278 subtag: bot
6279 link: rhyme MYSTERY
6280 doors:
6281 # This is complicated. I want the location in here to just be the four
6282 # panels against the wall toward Target. But in vanilla, you also need to
6283 # solve the panels in Circle that are against the Smiley wall. Logic needs
6284 # to know this so that it can handle no door shuffle properly. So we split
6285 # the item and location up.
6286 Door to Target:
6287 id:
6288 - Double Room Area Doors/Door_room_3a
6289 - Double Room Area Doors/Door_room_3bc
6290 skip_location: True
6291 group: Rhyme Room Doors
6292 panels:
6293 - SCHEME
6294 - FANTASY
6295 - HISTORY
6296 - SECRET
6297 - room: Rhyme Room (Circle)
6298 panel: BIRD
6299 - room: Rhyme Room (Circle)
6300 panel: LETTER
6301 - room: Rhyme Room (Circle)
6302 panel: VIOLENT
6303 - room: Rhyme Room (Circle)
6304 panel: MUTE
6305 Door to Target (Location):
6306 location_name: Rhyme Room (Smiley) - Puzzles Toward Target
6307 skip_item: True
6308 panels:
6309 - SCHEME
6310 - FANTASY
6311 - HISTORY
6312 - SECRET
6313 Rhyme Room (Cross):
6314 entrances:
6315 Rhyme Room (Target): # one-way
6316 room: Rhyme Room (Target)
6317 door: Door to Cross
6318 Rhyme Room (Looped Square):
6319 room: Rhyme Room (Looped Square)
6320 door: Door to Cross
6321 panels:
6322 NINE:
6323 id: Backside Room/Panel_nine_nine_9
6324 tag: midwhite
6325 required_door:
6326 room: Number Hunt
6327 door: Nines
6328 FERN:
6329 id: Double Room/Panel_return_rhyme
6330 colors: purple
6331 tag: ant rhyme
6332 subtag: top
6333 link: rhyme RETURN
6334 STAY:
6335 id: Double Room/Panel_return_ant
6336 colors: black
6337 tag: ant rhyme
6338 subtag: bot
6339 link: rhyme RETURN
6340 FRIEND:
6341 id: Double Room/Panel_descend_rhyme
6342 colors: purple
6343 tag: ant rhyme
6344 subtag: top
6345 link: rhyme DESCEND
6346 RISE:
6347 id: Double Room/Panel_descend_ant
6348 colors: black
6349 tag: ant rhyme
6350 subtag: bot
6351 link: rhyme DESCEND
6352 PLUMP:
6353 id: Double Room/Panel_jump_rhyme
6354 colors: purple
6355 tag: syn rhyme
6356 subtag: top
6357 link: rhyme JUMP
6358 BOUNCE:
6359 id: Double Room/Panel_jump_syn
6360 tag: syn rhyme
6361 subtag: bot
6362 link: rhyme JUMP
6363 SCRAWL:
6364 id: Double Room/Panel_fall_rhyme
6365 colors: purple
6366 tag: syn rhyme
6367 subtag: top
6368 link: rhyme FALL
6369 PLUNGE:
6370 id: Double Room/Panel_fall_syn
6371 tag: syn rhyme
6372 subtag: bot
6373 link: rhyme FALL
6374 LEAP:
6375 id: Double Room/Panel_leap_leap
6376 tag: midwhite
6377 doors:
6378 Exit:
6379 id: Double Room Area Doors/Door_room_exit
6380 location_name: Rhyme Room (Cross) - Exit Puzzles
6381 group: Rhyme Room Doors
6382 panels:
6383 - PLUMP
6384 - BOUNCE
6385 - SCRAWL
6386 - PLUNGE
6387 Rhyme Room (Circle):
6388 entrances:
6389 Rhyme Room (Looped Square):
6390 room: Rhyme Room (Looped Square)
6391 door: Door to Circle
6392 Hidden Room:
6393 room: Hidden Room
6394 door: Rhyme Room Entrance
6395 Rhyme Room (Smiley):
6396 door: Door to Smiley
6397 panels:
6398 BIRD:
6399 id: Double Room/Panel_word_rhyme
6400 colors: purple
6401 tag: whole rhyme
6402 subtag: top
6403 link: rhyme WORD
6404 LETTER:
6405 id: Double Room/Panel_word_whole
6406 colors: blue
6407 tag: whole rhyme
6408 subtag: bot
6409 link: rhyme WORD
6410 FORBIDDEN:
6411 id: Double Room/Panel_hidden_rhyme
6412 colors: purple
6413 tag: syn rhyme
6414 subtag: top
6415 link: rhyme HIDDEN
6416 CONCEALED:
6417 id: Double Room/Panel_hidden_syn
6418 tag: syn rhyme
6419 subtag: bot
6420 link: rhyme HIDDEN
6421 VIOLENT:
6422 id: Double Room/Panel_silent_rhyme
6423 colors: purple
6424 tag: syn rhyme
6425 subtag: top
6426 link: rhyme SILENT
6427 MUTE:
6428 id: Double Room/Panel_silent_syn
6429 tag: syn rhyme
6430 subtag: bot
6431 link: rhyme SILENT
6432 doors:
6433 Door to Smiley:
6434 id:
6435 - Double Room Area Doors/Door_room_2b
6436 - Double Room Area Doors/Door_room_3b
6437 location_name: Rhyme Room - Circle/Smiley Wall
6438 group: Rhyme Room Doors
6439 panels:
6440 - BIRD
6441 - LETTER
6442 - VIOLENT
6443 - MUTE
6444 - room: Rhyme Room (Smiley)
6445 panel: LOANS
6446 - room: Rhyme Room (Smiley)
6447 panel: SKELETON
6448 - room: Rhyme Room (Smiley)
6449 panel: REPENTANCE
6450 - room: Rhyme Room (Smiley)
6451 panel: WORD
6452 paintings:
6453 - id: arrows_painting_3
6454 orientation: north
6455 Rhyme Room (Looped Square):
6456 entrances:
6457 Starting Room:
6458 room: Starting Room
6459 door: Rhyme Room Entrance
6460 Rhyme Room (Circle):
6461 door: Door to Circle
6462 Rhyme Room (Cross):
6463 door: Door to Cross
6464 Rhyme Room (Target):
6465 door: Door to Target
6466 panels:
6467 WALKED:
6468 id: Double Room/Panel_blocked_rhyme
6469 colors: purple
6470 tag: syn rhyme
6471 subtag: top
6472 link: rhyme BLOCKED
6473 OBSTRUCTED:
6474 id: Double Room/Panel_blocked_syn
6475 tag: syn rhyme
6476 subtag: bot
6477 link: rhyme BLOCKED
6478 SKIES:
6479 id: Double Room/Panel_rise_rhyme
6480 colors: purple
6481 tag: syn rhyme
6482 subtag: top
6483 link: rhyme RISE
6484 SWELL:
6485 id: Double Room/Panel_rise_syn
6486 tag: syn rhyme
6487 subtag: bot
6488 link: rhyme RISE
6489 PENNED:
6490 id: Double Room/Panel_ascend_rhyme
6491 colors: purple
6492 tag: syn rhyme
6493 subtag: top
6494 link: rhyme ASCEND
6495 CLIMB:
6496 id: Double Room/Panel_ascend_syn
6497 tag: syn rhyme
6498 subtag: bot
6499 link: rhyme ASCEND
6500 TROUBLE:
6501 id: Double Room/Panel_double_rhyme
6502 colors: purple
6503 tag: syn rhyme
6504 subtag: top
6505 link: rhyme DOUBLE
6506 DUPLICATE:
6507 id: Double Room/Panel_double_syn
6508 tag: syn rhyme
6509 subtag: bot
6510 link: rhyme DOUBLE
6511 doors:
6512 Door to Circle:
6513 id:
6514 - Double Room Area Doors/Door_room_2a
6515 - Double Room Area Doors/Door_room_1c
6516 location_name: Rhyme Room - Circle/Looped Square Wall
6517 group: Rhyme Room Doors
6518 panels:
6519 - WALKED
6520 - OBSTRUCTED
6521 - SKIES
6522 - SWELL
6523 - room: Rhyme Room (Circle)
6524 panel: BIRD
6525 - room: Rhyme Room (Circle)
6526 panel: LETTER
6527 - room: Rhyme Room (Circle)
6528 panel: FORBIDDEN
6529 - room: Rhyme Room (Circle)
6530 panel: CONCEALED
6531 Door to Cross:
6532 id:
6533 - Double Room Area Doors/Door_room_1a
6534 - Double Room Area Doors/Door_room_5a
6535 location_name: Rhyme Room - Cross/Looped Square Wall
6536 group: Rhyme Room Doors
6537 panels:
6538 - SKIES
6539 - SWELL
6540 - PENNED
6541 - CLIMB
6542 - room: Rhyme Room (Cross)
6543 panel: FERN
6544 - room: Rhyme Room (Cross)
6545 panel: STAY
6546 - room: Rhyme Room (Cross)
6547 panel: FRIEND
6548 - room: Rhyme Room (Cross)
6549 panel: RISE
6550 Door to Target:
6551 id:
6552 - Double Room Area Doors/Door_room_1b
6553 - Double Room Area Doors/Door_room_4b
6554 location_name: Rhyme Room - Target/Looped Square Wall
6555 group: Rhyme Room Doors
6556 panels:
6557 - PENNED
6558 - CLIMB
6559 - TROUBLE
6560 - DUPLICATE
6561 - room: Rhyme Room (Target)
6562 panel: WILD
6563 - room: Rhyme Room (Target)
6564 panel: KID
6565 - room: Rhyme Room (Target)
6566 panel: PISTOL
6567 - room: Rhyme Room (Target)
6568 panel: QUARTZ
6569 Rhyme Room (Target):
6570 entrances:
6571 Rhyme Room (Smiley): # one-way
6572 room: Rhyme Room (Smiley)
6573 door: Door to Target
6574 Rhyme Room (Looped Square):
6575 room: Rhyme Room (Looped Square)
6576 door: Door to Target
6577 panels:
6578 WILD:
6579 id: Double Room/Panel_child_rhyme
6580 colors: purple
6581 tag: syn rhyme
6582 subtag: top
6583 link: rhyme CHILD
6584 KID:
6585 id: Double Room/Panel_child_syn
6586 tag: syn rhyme
6587 subtag: bot
6588 link: rhyme CHILD
6589 PISTOL:
6590 id: Double Room/Panel_crystal_rhyme
6591 colors: purple
6592 tag: syn rhyme
6593 subtag: top
6594 link: rhyme CRYSTAL
6595 QUARTZ:
6596 id: Double Room/Panel_crystal_syn
6597 tag: syn rhyme
6598 subtag: bot
6599 link: rhyme CRYSTAL
6600 INNOVATIVE (Top):
6601 id: Double Room/Panel_creative_rhyme
6602 colors: purple
6603 tag: syn rhyme
6604 subtag: top
6605 link: rhyme CREATIVE
6606 INNOVATIVE (Bottom):
6607 id: Double Room/Panel_creative_syn
6608 tag: syn rhyme
6609 subtag: bot
6610 link: rhyme CREATIVE
6611 doors:
6612 Door to Cross:
6613 id: Double Room Area Doors/Door_room_4a
6614 location_name: Rhyme Room (Target) - Puzzles Toward Cross
6615 group: Rhyme Room Doors
6616 panels:
6617 - PISTOL
6618 - QUARTZ
6619 - INNOVATIVE (Top)
6620 - INNOVATIVE (Bottom)
6621 paintings:
6622 - id: arrows_painting_4
6623 orientation: north
6624 Room Room:
6625 # This is a bit of a weird room. You can't really get to it from the roof.
6626 # And even if you were to go through the shortcut on the fifth floor into
6627 # the basement and up the stairs, you'd be blocked by the backsides of the
6628 # ROOM panels, which isn't ideal. So we will, at least for now, say that
6629 # this room is vanilla.
6630 #
6631 # For pretty much the same reason, I don't want to shuffle the paintings in
6632 # here.
6633 entrances:
6634 Orange Tower Fourth Floor: True
6635 panels:
6636 DOOR (1):
6637 id: Panel Room/Panel_room_door_1
6638 colors: gray
6639 tag: forbid
6640 DOOR (2):
6641 id: Panel Room/Panel_room_door_2
6642 colors: gray
6643 tag: forbid
6644 WINDOW:
6645 id: Panel Room/Panel_room_window_1
6646 colors: gray
6647 tag: forbid
6648 STAIRS:
6649 id: Panel Room/Panel_room_stairs_1
6650 colors: gray
6651 tag: forbid
6652 PAINTING:
6653 id: Panel Room/Panel_room_painting_1
6654 colors: gray
6655 tag: forbid
6656 FLOOR (1):
6657 id: Panel Room/Panel_room_floor_1
6658 colors: gray
6659 tag: forbid
6660 FLOOR (2):
6661 id: Panel Room/Panel_room_floor_2
6662 colors: gray
6663 tag: forbid
6664 FLOOR (3):
6665 id: Panel Room/Panel_room_floor_3
6666 colors: gray
6667 tag: forbid
6668 FLOOR (4):
6669 id: Panel Room/Panel_room_floor_4
6670 colors: gray
6671 tag: forbid
6672 FLOOR (5):
6673 id: Panel Room/Panel_room_floor_5
6674 colors: gray
6675 tag: forbid
6676 FLOOR (7):
6677 id: Panel Room/Panel_room_floor_7
6678 colors: gray
6679 tag: forbid
6680 FLOOR (8):
6681 id: Panel Room/Panel_room_floor_8
6682 colors: gray
6683 tag: forbid
6684 FLOOR (9):
6685 id: Panel Room/Panel_room_floor_9
6686 colors: gray
6687 tag: forbid
6688 FLOOR (10):
6689 id: Panel Room/Panel_room_floor_10
6690 colors: gray
6691 tag: forbid
6692 CEILING (1):
6693 id: Panel Room/Panel_room_ceiling_1
6694 colors: gray
6695 tag: forbid
6696 CEILING (2):
6697 id: Panel Room/Panel_room_ceiling_2
6698 colors: gray
6699 tag: forbid
6700 CEILING (3):
6701 id: Panel Room/Panel_room_ceiling_3
6702 colors: gray
6703 tag: forbid
6704 CEILING (4):
6705 id: Panel Room/Panel_room_ceiling_4
6706 colors: gray
6707 tag: forbid
6708 CEILING (5):
6709 id: Panel Room/Panel_room_ceiling_5
6710 colors: gray
6711 tag: forbid
6712 WALL (1):
6713 id: Panel Room/Panel_room_wall_1
6714 colors: gray
6715 tag: forbid
6716 WALL (2):
6717 id: Panel Room/Panel_room_wall_2
6718 colors: gray
6719 tag: forbid
6720 WALL (3):
6721 id: Panel Room/Panel_room_wall_3
6722 colors: gray
6723 tag: forbid
6724 WALL (4):
6725 id: Panel Room/Panel_room_wall_4
6726 colors: gray
6727 tag: forbid
6728 WALL (5):
6729 id: Panel Room/Panel_room_wall_5
6730 colors: gray
6731 tag: forbid
6732 WALL (6):
6733 id: Panel Room/Panel_room_wall_6
6734 colors: gray
6735 tag: forbid
6736 WALL (7):
6737 id: Panel Room/Panel_room_wall_7
6738 colors: gray
6739 tag: forbid
6740 WALL (8):
6741 id: Panel Room/Panel_room_wall_8
6742 colors: gray
6743 tag: forbid
6744 WALL (9):
6745 id: Panel Room/Panel_room_wall_9
6746 colors: gray
6747 tag: forbid
6748 WALL (10):
6749 id: Panel Room/Panel_room_wall_10
6750 colors: gray
6751 tag: forbid
6752 WALL (11):
6753 id: Panel Room/Panel_room_wall_11
6754 colors: gray
6755 tag: forbid
6756 WALL (12):
6757 id: Panel Room/Panel_room_wall_12
6758 colors: gray
6759 tag: forbid
6760 WALL (13):
6761 id: Panel Room/Panel_room_wall_13
6762 colors: gray
6763 tag: forbid
6764 WALL (14):
6765 id: Panel Room/Panel_room_wall_14
6766 colors: gray
6767 tag: forbid
6768 WALL (15):
6769 id: Panel Room/Panel_room_wall_15
6770 colors: gray
6771 tag: forbid
6772 WALL (16):
6773 id: Panel Room/Panel_room_wall_16
6774 colors: gray
6775 tag: forbid
6776 WALL (17):
6777 id: Panel Room/Panel_room_wall_17
6778 colors: gray
6779 tag: forbid
6780 WALL (18):
6781 id: Panel Room/Panel_room_wall_18
6782 colors: gray
6783 tag: forbid
6784 WALL (19):
6785 id: Panel Room/Panel_room_wall_19
6786 colors: gray
6787 tag: forbid
6788 WALL (20):
6789 id: Panel Room/Panel_room_wall_20
6790 colors: gray
6791 tag: forbid
6792 WALL (21):
6793 id: Panel Room/Panel_room_wall_21
6794 colors: gray
6795 tag: forbid
6796 BROOMED:
6797 id: Panel Room/Panel_broomed_bedroom
6798 colors: yellow
6799 tag: midyellow
6800 required_door:
6801 door: Excavation
6802 LAYS:
6803 id: Panel Room/Panel_lays_maze
6804 colors: purple
6805 tag: toppurp
6806 required_panel:
6807 panel: BROOMED
6808 BASE:
6809 id: Panel Room/Panel_base_basement
6810 colors: blue
6811 tag: midblue
6812 required_panel:
6813 panel: LAYS
6814 MASTERY:
6815 id: Master Room/Panel_mastery_mastery
6816 tag: midwhite
6817 colors: gray
6818 required_door:
6819 room: Orange Tower Seventh Floor
6820 door: Mastery
6821 doors:
6822 Excavation:
6823 event: True
6824 panels:
6825 - WALL (1)
6826 Shortcut to Fifth Floor:
6827 id:
6828 - Tower Room Area Doors/Door_panel_basement
6829 - Tower Room Area Doors/Door_panel_basement2
6830 panels:
6831 - BASE
6832 Cellar:
6833 entrances:
6834 Room Room:
6835 room: Room Room
6836 door: Excavation
6837 Orange Tower Fifth Floor:
6838 room: Room Room
6839 door: Shortcut to Fifth Floor
6840 Outside The Wise:
6841 entrances:
6842 Orange Tower Sixth Floor:
6843 painting: True
6844 Outside The Initiated:
6845 painting: True
6846 panels:
6847 KITTEN:
6848 id: Clock Room/Panel_kitten_cat
6849 colors: brown
6850 tag: botbrown
6851 CAT:
6852 id: Clock Room/Panel_cat_kitten
6853 tag: bot brown black
6854 colors:
6855 - brown
6856 - black
6857 doors:
6858 Wise Entrance:
6859 id: Clock Room Area Doors/Door_time_start
6860 item_name: The Wise - Entrance
6861 panels:
6862 - KITTEN
6863 - CAT
6864 paintings:
6865 - id: arrows_painting_2
6866 orientation: east
6867 - id: clock_painting_2
6868 orientation: east
6869 exit_only: True
6870 required: True
6871 The Wise:
6872 entrances:
6873 Outside The Wise:
6874 room: Outside The Wise
6875 door: Wise Entrance
6876 panels:
6877 Achievement:
6878 id: Countdown Panels/Panel_intelligent_wise
6879 colors:
6880 - brown
6881 - black
6882 tag: forbid
6883 check: True
6884 achievement: The Wise
6885 PUPPY:
6886 id: Clock Room/Panel_puppy_dog
6887 colors: brown
6888 tag: botbrown
6889 ADULT:
6890 id: Clock Room/Panel_adult_child
6891 colors:
6892 - brown
6893 - black
6894 tag: bot brown black
6895 BREAD:
6896 id: Clock Room/Panel_bread_mold
6897 colors: brown
6898 tag: botbrown
6899 DINOSAUR:
6900 id: Clock Room/Panel_dinosaur_fossil
6901 colors: brown
6902 tag: botbrown
6903 OAK:
6904 id: Clock Room/Panel_oak_acorn
6905 colors:
6906 - brown
6907 - black
6908 tag: bot brown black
6909 CORPSE:
6910 id: Clock Room/Panel_corpse_skeleton
6911 colors: brown
6912 tag: botbrown
6913 BEFORE:
6914 id: Clock Room/Panel_before_ere
6915 colors:
6916 - brown
6917 - black
6918 tag: mid brown black
6919 YOUR:
6920 id: Clock Room/Panel_your_thy
6921 colors:
6922 - brown
6923 - black
6924 tag: mid brown black
6925 BETWIXT:
6926 id: Clock Room/Panel_betwixt_between
6927 colors: brown
6928 tag: midbrown
6929 NIGH:
6930 id: Clock Room/Panel_nigh_near
6931 colors: brown
6932 tag: midbrown
6933 CONNEXION:
6934 id: Clock Room/Panel_connexion_connection
6935 colors: brown
6936 tag: midbrown
6937 THOU:
6938 id: Clock Room/Panel_thou_you
6939 colors: brown
6940 tag: midbrown
6941 paintings:
6942 - id: clock_painting_3
6943 orientation: east
6944 req_blocked: True # outside the wise (with or without door shuffle)
6945 The Red:
6946 entrances:
6947 Roof: True
6948 panels:
6949 Achievement:
6950 id: Countdown Panels/Panel_grandfathered_red
6951 colors: red
6952 tag: forbid
6953 check: True
6954 achievement: The Red
6955 PANDEMIC (1):
6956 id: Hangry Room/Panel_red_top_1
6957 colors: red
6958 tag: topred
6959 TRINITY:
6960 id: Hangry Room/Panel_red_top_2
6961 colors: red
6962 tag: topred
6963 CHEMISTRY:
6964 id: Hangry Room/Panel_red_top_3
6965 colors: red
6966 tag: topred
6967 FLUMMOXED:
6968 id: Hangry Room/Panel_red_top_4
6969 colors: red
6970 tag: topred
6971 PANDEMIC (2):
6972 id: Hangry Room/Panel_red_mid_1
6973 colors: red
6974 tag: midred
6975 COUNTERCLOCKWISE:
6976 id: Hangry Room/Panel_red_mid_2
6977 colors: red
6978 tag: red top red mid black bot
6979 FEARLESS:
6980 id: Hangry Room/Panel_red_mid_3
6981 colors: red
6982 tag: midred
6983 DEFORESTATION:
6984 id: Hangry Room/Panel_red_mid_4
6985 colors: red
6986 tag: red mid bot
6987 subtag: mid
6988 link: rmb FORE
6989 CRAFTSMANSHIP:
6990 id: Hangry Room/Panel_red_mid_5
6991 colors: red
6992 tag: red mid bot
6993 subtag: mid
6994 link: rmb AFT
6995 CAMEL:
6996 id: Hangry Room/Panel_red_bot_1
6997 colors: red
6998 tag: botred
6999 LION:
7000 id: Hangry Room/Panel_red_bot_2
7001 colors: red
7002 tag: botred
7003 TIGER:
7004 id: Hangry Room/Panel_red_bot_3
7005 colors: red
7006 tag: botred
7007 SHIP (1):
7008 id: Hangry Room/Panel_red_bot_4
7009 colors: red
7010 tag: red mid bot
7011 subtag: bot
7012 link: rmb FORE
7013 SHIP (2):
7014 id: Hangry Room/Panel_red_bot_5
7015 colors: red
7016 tag: red mid bot
7017 subtag: bot
7018 link: rmb AFT
7019 GIRAFFE:
7020 id: Hangry Room/Panel_red_bot_6
7021 colors: red
7022 tag: botred
7023 The Ecstatic:
7024 entrances:
7025 Roof: True
7026 panels:
7027 Achievement:
7028 id: Countdown Panels/Panel_ecstatic_ecstatic
7029 colors: yellow
7030 tag: forbid
7031 check: True
7032 achievement: The Ecstatic
7033 FORM (1):
7034 id: Smiley Room/Panel_soundgram_1
7035 colors: yellow
7036 tag: yellow top bot
7037 subtag: bottom
7038 link: ytb FORM
7039 WIND:
7040 id: Smiley Room/Panel_soundgram_2
7041 colors: yellow
7042 tag: botyellow
7043 EGGS:
7044 id: Smiley Room/Panel_scrambled_1
7045 colors: yellow
7046 tag: botyellow
7047 VEGETABLES:
7048 id: Smiley Room/Panel_scrambled_2
7049 colors: yellow
7050 tag: botyellow
7051 WATER:
7052 id: Smiley Room/Panel_anagram_6_1
7053 colors: yellow
7054 tag: botyellow
7055 FRUITS:
7056 id: Smiley Room/Panel_anagram_6_2
7057 colors: yellow
7058 tag: botyellow
7059 LEAVES:
7060 id: Smiley Room/Panel_anagram_7_1
7061 colors: yellow
7062 tag: topyellow
7063 VINES:
7064 id: Smiley Room/Panel_anagram_7_2
7065 colors: yellow
7066 tag: topyellow
7067 ICE:
7068 id: Smiley Room/Panel_anagram_7_3
7069 colors: yellow
7070 tag: topyellow
7071 STYLE:
7072 id: Smiley Room/Panel_anagram_7_4
7073 colors: yellow
7074 tag: topyellow
7075 FIR:
7076 id: Smiley Room/Panel_anagram_8_1
7077 colors: yellow
7078 tag: topyellow
7079 REEF:
7080 id: Smiley Room/Panel_anagram_8_2
7081 colors: yellow
7082 tag: topyellow
7083 ROTS:
7084 id: Smiley Room/Panel_anagram_8_3
7085 colors: yellow
7086 tag: topyellow
7087 FORM (2):
7088 id: Smiley Room/Panel_anagram_9_1
7089 colors: yellow
7090 tag: yellow top bot
7091 subtag: top
7092 link: ytb FORM
7093 Outside The Scientific:
7094 entrances:
7095 Roof: True
7096 The Scientific:
7097 door: Scientific Entrance
7098 panels:
7099 OPEN:
7100 id: Chemistry Room/Panel_open
7101 tag: midwhite
7102 CLOSE:
7103 id: Chemistry Room/Panel_close
7104 colors: black
7105 tag: botblack
7106 AHEAD:
7107 id: Chemistry Room/Panel_ahead
7108 colors: black
7109 tag: botblack
7110 doors:
7111 Scientific Entrance:
7112 id: Red Blue Purple Room Area Doors/Door_chemistry_lab
7113 item_name: The Scientific - Entrance
7114 panels:
7115 - OPEN
7116 The Scientific:
7117 entrances:
7118 Outside The Scientific:
7119 room: Outside The Scientific
7120 door: Scientific Entrance
7121 panels:
7122 Achievement:
7123 id: Countdown Panels/Panel_scientific_scientific
7124 colors:
7125 - yellow
7126 - red
7127 - blue
7128 - brown
7129 - black
7130 - purple
7131 tag: forbid
7132 check: True
7133 achievement: The Scientific
7134 HYDROGEN (1):
7135 id: Chemistry Room/Panel_blue_bot_3
7136 colors: blue
7137 tag: tri botblue
7138 link: tbb WATER
7139 OXYGEN:
7140 id: Chemistry Room/Panel_blue_bot_2
7141 colors: blue
7142 tag: tri botblue
7143 link: tbb WATER
7144 HYDROGEN (2):
7145 id: Chemistry Room/Panel_blue_bot_4
7146 colors: blue
7147 tag: tri botblue
7148 link: tbb WATER
7149 SUGAR (1):
7150 id: Chemistry Room/Panel_sugar_1
7151 colors: red
7152 tag: botred
7153 SUGAR (2):
7154 id: Chemistry Room/Panel_sugar_2
7155 colors: red
7156 tag: botred
7157 SUGAR (3):
7158 id: Chemistry Room/Panel_sugar_3
7159 colors: red
7160 tag: botred
7161 CHLORINE:
7162 id: Chemistry Room/Panel_blue_bot_5
7163 colors: blue
7164 tag: double botblue
7165 subtag: left
7166 link: holo SALT
7167 SODIUM:
7168 id: Chemistry Room/Panel_blue_bot_6
7169 colors: blue
7170 tag: double botblue
7171 subtag: right
7172 link: holo SALT
7173 FOREST:
7174 id: Chemistry Room/Panel_long_bot_1
7175 colors:
7176 - red
7177 - blue
7178 tag: chain red bot blue top
7179 POUND:
7180 id: Chemistry Room/Panel_long_top_1
7181 colors:
7182 - red
7183 - blue
7184 tag: chain blue mid red bot
7185 ICE:
7186 id: Chemistry Room/Panel_brown_bot_1
7187 colors: brown
7188 tag: botbrown
7189 FISSION:
7190 id: Chemistry Room/Panel_black_bot_1
7191 colors: black
7192 tag: botblack
7193 FUSION:
7194 id: Chemistry Room/Panel_black_bot_2
7195 colors: black
7196 tag: botblack
7197 MISS:
7198 id: Chemistry Room/Panel_blue_top_1
7199 colors: blue
7200 tag: double topblue
7201 subtag: left
7202 link: exp CHEMISTRY
7203 TREE (1):
7204 id: Chemistry Room/Panel_blue_top_2
7205 colors: blue
7206 tag: double topblue
7207 subtag: right
7208 link: exp CHEMISTRY
7209 BIOGRAPHY:
7210 id: Chemistry Room/Panel_biology_9
7211 colors: purple
7212 tag: midpurp
7213 CACTUS:
7214 id: Chemistry Room/Panel_biology_4
7215 colors: red
7216 tag: double botred
7217 subtag: right
7218 link: mero SPINE
7219 VERTEBRATE:
7220 id: Chemistry Room/Panel_biology_8
7221 colors: red
7222 tag: double botred
7223 subtag: left
7224 link: mero SPINE
7225 ROSE:
7226 id: Chemistry Room/Panel_biology_2
7227 colors: red
7228 tag: botred
7229 TREE (2):
7230 id: Chemistry Room/Panel_biology_3
7231 colors: red
7232 tag: botred
7233 FRUIT:
7234 id: Chemistry Room/Panel_biology_1
7235 colors: red
7236 tag: botred
7237 MAMMAL:
7238 id: Chemistry Room/Panel_biology_5
7239 colors: red
7240 tag: botred
7241 BIRD:
7242 id: Chemistry Room/Panel_biology_6
7243 colors: red
7244 tag: botred
7245 FISH:
7246 id: Chemistry Room/Panel_biology_7
7247 colors: red
7248 tag: botred
7249 GRAVELY:
7250 id: Chemistry Room/Panel_physics_9
7251 colors: purple
7252 tag: double midpurp
7253 subtag: left
7254 link: change GRAVITY
7255 BREVITY:
7256 id: Chemistry Room/Panel_biology_10
7257 colors: purple
7258 tag: double midpurp
7259 subtag: right
7260 link: change GRAVITY
7261 PART:
7262 id: Chemistry Room/Panel_physics_2
7263 colors: blue
7264 tag: blue mid red bot
7265 subtag: mid
7266 link: xur PARTICLE
7267 MATTER:
7268 id: Chemistry Room/Panel_physics_1
7269 colors: red
7270 tag: blue mid red bot
7271 subtag: bot
7272 link: xur PARTICLE
7273 ELECTRIC:
7274 id: Chemistry Room/Panel_physics_6
7275 colors: purple
7276 tag: purple mid red bot
7277 subtag: mid
7278 link: xpr ELECTRON
7279 ATOM (1):
7280 id: Chemistry Room/Panel_physics_3
7281 colors: red
7282 tag: purple mid red bot
7283 subtag: bot
7284 link: xpr ELECTRON
7285 NEUTRAL:
7286 id: Chemistry Room/Panel_physics_7
7287 colors: purple
7288 tag: purple mid red bot
7289 subtag: mid
7290 link: xpr NEUTRON
7291 ATOM (2):
7292 id: Chemistry Room/Panel_physics_4
7293 colors: red
7294 tag: purple mid red bot
7295 subtag: bot
7296 link: xpr NEUTRON
7297 PROPEL:
7298 id: Chemistry Room/Panel_physics_8
7299 colors: purple
7300 tag: purple mid red bot
7301 subtag: mid
7302 link: xpr PROTON
7303 ATOM (3):
7304 id: Chemistry Room/Panel_physics_5
7305 colors: red
7306 tag: purple mid red bot
7307 subtag: bot
7308 link: xpr PROTON
7309 ORDER:
7310 id: Chemistry Room/Panel_physics_11
7311 colors: brown
7312 tag: botbrown
7313 OPTICS:
7314 id: Chemistry Room/Panel_physics_10
7315 colors: yellow
7316 tag: midyellow
7317 GRAPHITE:
7318 id: Chemistry Room/Panel_yellow_bot_1
7319 colors: yellow
7320 tag: botyellow
7321 HOT RYE:
7322 id: Chemistry Room/Panel_anagram_1
7323 colors: yellow
7324 tag: midyellow
7325 SIT SHY HOPE:
7326 id: Chemistry Room/Panel_anagram_2
7327 colors: yellow
7328 tag: midyellow
7329 ME NEXT PIER:
7330 id: Chemistry Room/Panel_anagram_3
7331 colors: yellow
7332 tag: midyellow
7333 RUT LESS:
7334 id: Chemistry Room/Panel_anagram_4
7335 colors: yellow
7336 tag: midyellow
7337 SON COUNCIL:
7338 id: Chemistry Room/Panel_anagram_5
7339 colors: yellow
7340 tag: midyellow
7341 doors:
7342 Chemistry Puzzles:
7343 skip_item: True
7344 location_name: The Scientific - Chemistry Puzzles
7345 panels:
7346 - HYDROGEN (1)
7347 - OXYGEN
7348 - HYDROGEN (2)
7349 - SUGAR (1)
7350 - SUGAR (2)
7351 - SUGAR (3)
7352 - CHLORINE
7353 - SODIUM
7354 - FOREST
7355 - POUND
7356 - ICE
7357 - FISSION
7358 - FUSION
7359 - MISS
7360 - TREE (1)
7361 Biology Puzzles:
7362 skip_item: True
7363 location_name: The Scientific - Biology Puzzles
7364 panels:
7365 - BIOGRAPHY
7366 - CACTUS
7367 - VERTEBRATE
7368 - ROSE
7369 - TREE (2)
7370 - FRUIT
7371 - MAMMAL
7372 - BIRD
7373 - FISH
7374 Physics Puzzles:
7375 skip_item: True
7376 location_name: The Scientific - Physics Puzzles
7377 panels:
7378 - GRAVELY
7379 - BREVITY
7380 - PART
7381 - MATTER
7382 - ELECTRIC
7383 - ATOM (1)
7384 - NEUTRAL
7385 - ATOM (2)
7386 - PROPEL
7387 - ATOM (3)
7388 - ORDER
7389 - OPTICS
7390 paintings:
7391 - id: hi_solved_painting4
7392 orientation: south
7393 req_blocked_when_no_doors: True # owl hallway in vanilla doors
7394 Challenge Room:
7395 entrances:
7396 Welcome Back Area:
7397 door: Welcome Door
7398 Number Hunt:
7399 room: Outside The Undeterred
7400 door: Challenge Entrance
7401 panels:
7402 WELCOME:
7403 id: Challenge Room/Panel_welcome_welcome
7404 tag: midwhite
7405 CHALLENGE:
7406 id: Challenge Room/Panel_challenge_challenge
7407 tag: midwhite
7408 Achievement:
7409 id: Countdown Panels/Panel_challenged_unchallenged
7410 check: True
7411 colors:
7412 - black
7413 - gray
7414 - red
7415 - blue
7416 - yellow
7417 - purple
7418 - brown
7419 - orange
7420 tag: forbid
7421 achievement: The Unchallenged
7422 OPEN:
7423 id: Challenge Room/Panel_open_nepotism
7424 colors:
7425 - black
7426 - blue
7427 tag: chain mid black !!! blue
7428 SINGED:
7429 id: Challenge Room/Panel_singed_singsong
7430 colors:
7431 - red
7432 - blue
7433 tag: chain mid red blue
7434 NEVER TRUSTED:
7435 id: Challenge Room/Panel_nevertrusted_maladjusted
7436 colors: purple
7437 tag: midpurp
7438 CORNER:
7439 id: Challenge Room/Panel_corner_corn
7440 colors: red
7441 tag: midred
7442 STRAWBERRIES:
7443 id: Challenge Room/Panel_strawberries_mold
7444 colors: brown
7445 tag: double botbrown
7446 subtag: left
7447 link: time MOLD
7448 GRUB:
7449 id: Challenge Room/Panel_grub_burger
7450 colors:
7451 - black
7452 - blue
7453 tag: chain mid black blue
7454 BREAD:
7455 id: Challenge Room/Panel_bread_mold
7456 colors: brown
7457 tag: double botbrown
7458 subtag: right
7459 link: time MOLD
7460 COLOR:
7461 id: Challenge Room/Panel_color_gray
7462 colors: gray
7463 tag: forbid
7464 WRITER:
7465 id: Challenge Room/Panel_writer_songwriter
7466 colors: blue
7467 tag: midblue
7468 "02759":
7469 id: Challenge Room/Panel_tales_stale
7470 colors:
7471 - orange
7472 - yellow
7473 tag: chain mid orange yellow
7474 REAL EYES:
7475 id: Challenge Room/Panel_realeyes_realize
7476 tag: topwhite
7477 LOBS:
7478 id: Challenge Room/Panel_lobs_lobster
7479 colors: blue
7480 tag: midblue
7481 PEST ALLY:
7482 id: Challenge Room/Panel_double_anagram_1
7483 colors: yellow
7484 tag: midyellow
7485 GENIAL HALO:
7486 id: Challenge Room/Panel_double_anagram_2
7487 colors: yellow
7488 tag: midyellow
7489 DUCK LOGO:
7490 id: Challenge Room/Panel_double_anagram_3
7491 colors: yellow
7492 tag: midyellow
7493 AVIAN GREEN:
7494 id: Challenge Room/Panel_double_anagram_4
7495 colors: yellow
7496 tag: midyellow
7497 FEVER TEAR:
7498 id: Challenge Room/Panel_double_anagram_5
7499 colors: yellow
7500 tag: midyellow
7501 FACTS:
7502 id: Challenge Room/Panel_facts
7503 colors:
7504 - red
7505 - blue
7506 tag: forbid
7507 FACTS (1):
7508 id: Challenge Room/Panel_facts2
7509 colors: red
7510 tag: forbid
7511 FACTS (3):
7512 id: Challenge Room/Panel_facts3
7513 tag: forbid
7514 FACTS (4):
7515 id: Challenge Room/Panel_facts4
7516 colors: blue
7517 tag: forbid
7518 FACTS (5):
7519 id: Challenge Room/Panel_facts5
7520 colors: blue
7521 tag: forbid
7522 FACTS (6):
7523 id: Challenge Room/Panel_facts6
7524 colors: blue
7525 tag: forbid
7526 LAPEL SHEEP:
7527 id: Challenge Room/Panel_double_anagram_6
7528 colors: yellow
7529 tag: midyellow
7530 doors:
7531 Welcome Door:
7532 id: Entry Room Area Doors/Door_challenge_challenge
7533 panels:
7534 - WELCOME