Initial handling of hybrid glitch logic outside of UnderworldGlitchRules

This commit is contained in:
espeon65536
2021-06-07 01:19:27 -05:00
parent ac31671914
commit 16c6e17a49
5 changed files with 15 additions and 4 deletions

View File

@@ -813,6 +813,9 @@ class CollectionState(object):
rules.append(self.has('Moon Pearl', player))
return all(rules)
def can_bomb_clip(self, region: Region, player: int) -> bool:
return self.is_not_bunny(region, player) and self.has('Pegasus Boots', player)
# Minecraft logic functions
def has_iron_ingots(self, player: int):
return self.has('Progressive Tools', player) and self.has('Ingot Crafting', player)