Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions randomizer/Lists/DoorLocations.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ def isBarrierRemoved(spoiler, barrier_id: RemovedBarriersSelected):
location=[1498.8, 438.167, 299, 270],
group=11,
logic=lambda l: l.can_use_vines and l.climbing,
door_type=[DoorType.wrinkly], # Note: revert in 6.0
moveless=False,
),
DoorData(
Expand Down Expand Up @@ -2933,6 +2934,7 @@ def isBarrierRemoved(spoiler, barrier_id: RemovedBarriersSelected):
rx=-54.458709399833616,
rz=-2.2464418296590756,
door_tags=[DoorTags.Season5Door],
door_type=[DoorType.wrinkly], # Note: revert in 6.0
group=4,
),
DoorData(
Expand Down Expand Up @@ -3332,6 +3334,7 @@ def isBarrierRemoved(spoiler, barrier_id: RemovedBarriersSelected):
location=[481.998441919847, 1247.9489978887038, 1112.7816908753691, -68.0916195979442],
rx=-32.23957607313838,
door_tags=[DoorTags.Season5Door],
door_type=[DoorType.wrinkly], # Note: revert in 6.0
group=5,
),
DoorData(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
| Japes Under Ground | Chunky underground - right wall | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Japes Under Ground | Chunky underground - Kasplat platform | Wrinkly | `l.can_use_vines and l.pineapple and l.ischunky` |
| Jungle Japes | Next to the baboon blast pad | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Jungle Japes | Entrance door switch | Boss, Dk_Portal, Wrinkly | `l.can_use_vines and l.climbing` |
| Jungle Japes | Entrance door switch | Wrinkly | `l.can_use_vines and l.climbing` |
| Jungle Japes | Next to level entrance | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Jungle Japes | Against the mountain | Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Jungle Japes | Slope to Kong Cage | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
Expand Down Expand Up @@ -287,7 +287,7 @@
| Fungi Forest | Mill front side - right | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Mill right side - left | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Mill right side - right | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Mill Roof - Sloped | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Mill Roof - Sloped | Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Mill Roof - tower | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Boxes outside of Rafters Barn | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Behind Night Thorns - right | Boss, Wrinkly | `self.logic = lambda _: True` |
Expand Down Expand Up @@ -326,7 +326,7 @@
| Forest Mill Back | Mill - back side - In the hay | Boss, Wrinkly | `self.logic = lambda _: True` |
| Forest Mill Back | Mill - back side - Crates near spider entrance | Boss, Wrinkly | `self.logic = lambda _: True` |
| Forest Giant Mushroom | Giant mushroom - Top towards tag barrel | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Top of Giant Mushroom Exterior Exit | Boss, Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Top of Giant Mushroom Exterior Exit | Wrinkly | `self.logic = lambda _: True` |
| Fungi Forest | Night door in the owl tree | Boss, Wrinkly | `l.TimeAccess(Regions.HollowTreeArea, Time.Night) and l.jetpack and l.isdiddy` |
| Forest Lanky Mushrooms Room | Lanky's colored mushrooms room | Dk_Portal, Wrinkly | `self.logic = lambda _: True` |
| Forest Thornvine Barn | DK's Barn - Second floor | Boss, Wrinkly | `self.logic = lambda _: True` |
Expand Down
Loading