Skip to content

Commit

Permalink
Add ice grapple hard for swamp mid to the ledge
Browse files Browse the repository at this point in the history
  • Loading branch information
ScipioWright authored Aug 12, 2024
1 parent 8b2389b commit 197d421
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worlds/tunic/er_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,9 +925,11 @@ def set_er_region_rules(world: "TunicWorld", regions: Dict[str, Region], portal_
connecting_region=regions["Swamp Mid"],
rule=lambda state: has_ice_grapple_logic(False, IceGrappling.option_easy, state, world))

# grapple push the enemy by the door down, then grapple to it. Really jank
regions["Swamp Mid"].connect(
connecting_region=regions["Swamp Ledge under Cathedral Door"],
rule=lambda state: has_ladder("Ladders in Swamp", state, world))
rule=lambda state: has_ladder("Ladders in Swamp", state, world)
or has_ice_grapple_logic(True, IceGrappling.option_hard, state, world))
# ice grapple enemy standing at the door
regions["Swamp Ledge under Cathedral Door"].connect(
connecting_region=regions["Swamp Mid"],
Expand Down

0 comments on commit 197d421

Please sign in to comment.