Small boss rule

This commit is contained in:
StructuralMike
2021-03-04 23:46:19 +01:00
parent 464dd652c6
commit a21423ee9c
2 changed files with 2 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ def MoldormDefeatRule(state, player):
return state.has_blunt_weapon(player)
def HelmasaurKingDefeatRule(state, player):
return state.has_sword(player) or state.can_shoot_arrows(player)
return state.has('Hammer', player) or (state.can_use_bombs(player) and (state.has_sword(player) or state.can_shoot_arrows(player)))
def ArrghusDefeatRule(state, player):
if not state.has('Hookshot', player):