Skip to content

Commit

Permalink
Update Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Aug 7, 2024
1 parent 90219ea commit 48a2c05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/khrecom/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 48a2c05

Please sign in to comment.