no real reason to make class, also using class wrong so theres that
This commit is contained in:
parent
e919b2b066
commit
6cae0a1a4d
23
OWGSets.py
23
OWGSets.py
|
@ -1,9 +1,8 @@
|
|||
class OWGSets(self):
|
||||
'''
|
||||
Helper class to deliver entrance/exit/region sets to OWG rules.
|
||||
Helper functions to deliver entrance/exit/region sets to OWG rules.
|
||||
'''
|
||||
|
||||
def get_immediately_accessible_entrances(self):
|
||||
def get_immediately_accessible_entrances():
|
||||
'''
|
||||
Entrances that are available with no items at all.
|
||||
|
||||
|
@ -16,7 +15,7 @@ class OWGSets(self):
|
|||
'Capacity Upgrade',
|
||||
]
|
||||
|
||||
def get_lw_boots_accessible_entrances(self, world, player):
|
||||
def get_lw_boots_accessible_entrances(world, player):
|
||||
'''
|
||||
Light World entrances that can be accessed with boots clips.
|
||||
'''
|
||||
|
@ -72,7 +71,7 @@ class OWGSets(self):
|
|||
return entrances
|
||||
|
||||
|
||||
def get_lw_boots_accessible_locations(self):
|
||||
def get_lw_boots_accessible_locations():
|
||||
'''
|
||||
Light World locations that can be reached using boots clips.
|
||||
'''
|
||||
|
@ -84,7 +83,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_dw_boots_accessible_entrances(self):
|
||||
def get_dw_boots_accessible_entrances():
|
||||
'''
|
||||
Dark World entrances that can be accessed with boots clips.
|
||||
'''
|
||||
|
@ -120,7 +119,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_dw_boots_accessible_locations(self):
|
||||
def get_dw_boots_accessible_locations():
|
||||
'''
|
||||
Dark World locations accessible using boots clips.
|
||||
'''
|
||||
|
@ -131,7 +130,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_dw_bunny_inaccessible_locations(self):
|
||||
def get_dw_bunny_inaccessible_locations():
|
||||
'''
|
||||
Locations that the bunny cannot access.
|
||||
'''
|
||||
|
@ -151,7 +150,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_dmd_and_bunny_regions(self):
|
||||
def get_dmd_and_bunny_regions():
|
||||
'''
|
||||
Dark World regions accessible using Link and Bunny DMD methods.
|
||||
'''
|
||||
|
@ -162,7 +161,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_dmd_non_bunny_regions(self):
|
||||
def get_dmd_non_bunny_regions():
|
||||
'''
|
||||
Dark World regions accessible using only Link DMD methods.
|
||||
'''
|
||||
|
@ -172,7 +171,7 @@ class OWGSets(self):
|
|||
]
|
||||
|
||||
|
||||
def get_mirror_hookshot_accessible_dw_locations(self, world, player):
|
||||
def get_mirror_hookshot_accessible_dw_locations(world, player):
|
||||
'''
|
||||
Locations accessible potentially using weird mirror hookshot boots setups.
|
||||
'''
|
||||
|
@ -185,7 +184,7 @@ class OWGSets(self):
|
|||
return locations
|
||||
|
||||
|
||||
def sword_required_superbunny_mirror_regions(self):
|
||||
def sword_required_superbunny_mirror_regions():
|
||||
'''
|
||||
Cave regions that superbunny can get through - but only with a sword.
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue