Skip to content

Commit

Permalink
Update Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Jun 9, 2024
1 parent 41de706 commit 7c1ffbf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions worlds/kh1/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -1984,6 +1984,7 @@ def set_rules(multiworld: MultiWorld, player: int, options, eotw_required_report
(
has_item(state, player, "Theon Vol. 6")
or has_at_least(state, player, "High Jump", 3)
or has_emblems(state, player)
)
and has_item(state, player, "Progressive Fire")
and
Expand All @@ -1997,17 +1998,20 @@ def set_rules(multiworld: MultiWorld, player: int, options, eotw_required_report
multiworld.get_location("Hollow Bastion Entrance Hall Emblem Piece (Chest)" , player).access_rule = lambda state: (
has_item(state, player, "Theon Vol. 6")
or has_at_least(state, player, "High Jump", 3)
or has_emblems(state, player)
)
multiworld.get_location("Hollow Bastion Entrance Hall Emblem Piece (Statue)" , player).access_rule = lambda state: (
(
has_item(state, player, "Theon Vol. 6")
or has_at_least(state, player, "High Jump", 3)
or has_emblems(state, player)
)
and has_item(state, player, "Red Trinity")
)
multiworld.get_location("Hollow Bastion Entrance Hall Emblem Piece (Fountain)" , player).access_rule = lambda state: (
has_item(state, player, "Theon Vol. 6")
or has_at_least(state, player, "High Jump", 3)
or has_emblems(state, player)
)
#multiworld.get_location("Traverse Town 1st District Leon Gift" , player).access_rule = lambda state: ()
#multiworld.get_location("Traverse Town 1st District Aerith Gift" , player).access_rule = lambda state: ()
Expand Down

0 comments on commit 7c1ffbf

Please sign in to comment.