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 18, 2024
1 parent 48a2c05 commit 07405f1
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 @@ -107,9 +107,9 @@ def set_rules(multiworld: MultiWorld, player: int, options):
multiworld.get_location("Defeat 1 Heartless Green Requiem" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_castle_oblivion(state, player)
multiworld.get_location("Defeat 2 Heartless Green Requiem" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_castle_oblivion(state, player)
multiworld.get_location("Defeat 3 Heartless Green Requiem" , player).access_rule = lambda state: has_item(state, player,"World Card Monstro") or has_item(state, player,"World Card Agrabah") or has_castle_oblivion(state, player)
multiworld.get_location("Defeat 1 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum")
multiworld.get_location("Defeat 2 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum")
multiworld.get_location("Defeat 3 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum")
multiworld.get_location("Defeat 1 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum") or has_item(state, player,"World Card Monstro")
multiworld.get_location("Defeat 2 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum") or has_item(state, player,"World Card Monstro")
multiworld.get_location("Defeat 3 Heartless Large Body" , player).access_rule = lambda state: has_item(state, player,"World Card Wonderland") or has_item(state, player,"World Card Olympus Coliseum") or has_item(state, player,"World Card Monstro")
multiworld.get_location("Defeat 1 Heartless Neoshadow" , player).access_rule = lambda state: has_castle_oblivion(state, player)
multiworld.get_location("Defeat 2 Heartless Neoshadow" , player).access_rule = lambda state: has_castle_oblivion(state, player)
multiworld.get_location("Defeat 3 Heartless Neoshadow" , player).access_rule = lambda state: has_castle_oblivion(state, player)
Expand Down

0 comments on commit 07405f1

Please sign in to comment.