Add laurels zip logic to the chest in the spike room in cathedral

This commit is contained in:
Scipio Wright
2024-07-12 09:22:51 -04:00
committed by GitHub
parent ba24481fb1
commit 0104329821

View File

@@ -1678,3 +1678,7 @@ def set_er_location_rules(world: "TunicWorld") -> None:
combat_logic_to_loc("Swamp - [Upper Graveyard] Near Telescope", "Swamp")
combat_logic_to_loc("Swamp - [Upper Graveyard] Near Shield Fleemers", "Swamp")
combat_logic_to_loc("Swamp - [Upper Graveyard] Obscured Behind Hill", "Swamp")
# zip through the rubble to sneakily grab this chest, or just fight to it
add_rule(multiworld.get_location("Cathedral - [1F] Near Spikes", player),
lambda state: laurels_zip(state, world) or has_combat_reqs("Cathedral", state, player))