Logic updates

- Add Thieves -> Desert clip (+ as connector)
 - Spec rock bomb clip (+ as connector)
 - Paradox teleport for chests in crystal area and from front
 - Require bombs or Somaria to get out of IP clip
 - Add dash clip checks
This commit is contained in:
KrisDavie
2023-02-17 20:29:31 +01:00
parent 2b826077fc
commit 228f18fed4
2 changed files with 81 additions and 20 deletions

View File

@@ -1102,6 +1102,9 @@ class CollectionState(object):
def can_bomb_clip(self, region, player: int) -> bool:
return self.is_not_bunny(region, player) and self.has('Pegasus Boots', player) and self.can_use_bombs(player)
def can_dash_clip(self, region, player: int) -> bool:
return self.is_not_bunny(region, player) and self.has('Pegasus Boots', player)
def has_bottle(self, player):
return self.bottle_count(player) > 0