From 1be836930fe43df11e8c4d6f2795dc005245d7d0 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Mon, 17 Jun 2024 09:26:28 -0400 Subject: [PATCH] Add well front -> back hard ladder storages --- worlds/tunic/ladder_storage_data.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/worlds/tunic/ladder_storage_data.py b/worlds/tunic/ladder_storage_data.py index 4875bb2519..89e8c818d7 100644 --- a/worlds/tunic/ladder_storage_data.py +++ b/worlds/tunic/ladder_storage_data.py @@ -168,12 +168,18 @@ medium_ls: List[LadderInfo] = [ ] hard_ls: List[LadderInfo] = [ + # lower ladder, go into the waterfall then above the bonfire, up a ramp, then through the right wall + LadderInfo("Beneath the Well Front", "Sewer, Sewer_Boss_", "Ladders in Well"), + LadderInfo("Beneath the Well Front", "Sewer, Overworld Redux_west_aqueduct", "Ladders in Well"), + LadderInfo("Beneath the Well Front", "Beneath the Well Back", "Ladders in Well", dest_is_region=True), + # go through the hexagon engraving above the vault door LadderInfo("Frog's Domain", "frog cave main, Frog Stairs_Exit", "Ladders to Frog's Domain"), + # maybe a little egregious -- ice grapple a spider off, then use it to push into the portal room LadderInfo("Rooted Ziggurat Lower Back", "ziggurat2020_3, ziggurat2020_FTRoom_"), + # go behind the cathedral to reach the door, pretty easily doable LadderInfo("Swamp Mid", "Swamp Redux 2, Cathedral Redux_main", "Ladders in Swamp"), - # need to do hc midair - LadderInfo("Swamp Mid", "Swamp Redux 2, Cathedral Redux_secret", "Ladders in Swamp"), LadderInfo("Back of Swamp", "Swamp Redux 2, Cathedral Redux_main"), - # need to do hc midair + # need to do hc midair, probably cannot get into this without hc + LadderInfo("Swamp Mid", "Swamp Redux 2, Cathedral Redux_secret", "Ladders in Swamp"), LadderInfo("Back of Swamp", "Swamp Redux 2, Cathedral Redux_secret"), ]