From 48a2c05ebf12352893981a63622ee9d1bfa9cb26 Mon Sep 17 00:00:00 2001 From: gaithern Date: Wed, 7 Aug 2024 17:45:46 -0500 Subject: [PATCH] Update Rules.py --- worlds/khrecom/Rules.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/khrecom/Rules.py b/worlds/khrecom/Rules.py index c1f08ee55edb..4e3e3a697908 100644 --- a/worlds/khrecom/Rules.py +++ b/worlds/khrecom/Rules.py @@ -71,9 +71,9 @@ def set_rules(multiworld: MultiWorld, player: int, options): multiworld.get_location("Defeat 1 Heartless Air Pirate" , player).access_rule = lambda state: has_item(state, player,"World Card Neverland") multiworld.get_location("Defeat 2 Heartless Air Pirate" , player).access_rule = lambda state: has_item(state, player,"World Card Neverland") multiworld.get_location("Defeat 3 Heartless Air Pirate" , player).access_rule = lambda state: has_item(state, player,"World Card Neverland") - multiworld.get_location("Defeat 1 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Halloween Town") or has_item(state, player,"World Card Destiny Islands") - multiworld.get_location("Defeat 2 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Halloween Town") or has_item(state, player,"World Card Destiny Islands") - multiworld.get_location("Defeat 3 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Halloween Town") or has_item(state, player,"World Card Destiny Islands") + multiworld.get_location("Defeat 1 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Twilight Town") + multiworld.get_location("Defeat 2 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Twilight Town") + multiworld.get_location("Defeat 3 Heartless Air Soldier" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_item(state, player,"World Card Twilight Town") multiworld.get_location("Defeat 1 Heartless Aquatank" , player).access_rule = lambda state: has_item(state, player,"World Card Atlantica") multiworld.get_location("Defeat 2 Heartless Aquatank" , player).access_rule = lambda state: has_item(state, player,"World Card Atlantica") multiworld.get_location("Defeat 3 Heartless Aquatank" , player).access_rule = lambda state: has_item(state, player,"World Card Atlantica")