2021-02-21 19:17:24 +00:00
|
|
|
from typing import Optional
|
2020-10-24 03:38:56 +00:00
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
from BaseClasses import Location, Item
|
2021-06-11 12:22:44 +00:00
|
|
|
from ..AutoWorld import World
|
2020-10-24 03:38:56 +00:00
|
|
|
|
2021-06-11 12:22:44 +00:00
|
|
|
class ALTTPWorld(World):
|
|
|
|
game: str = "A Link to the Past"
|
2020-10-24 03:38:56 +00:00
|
|
|
|
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
class ALttPLocation(Location):
|
|
|
|
game: str = "A Link to the Past"
|
2020-10-24 03:38:56 +00:00
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
def __init__(self, player: int, name: str = '', address=None, crystal: bool = False,
|
|
|
|
hint_text: Optional[str] = None, parent=None,
|
|
|
|
player_address=None):
|
|
|
|
super(ALttPLocation, self).__init__(player, name, address, parent)
|
|
|
|
self.crystal = crystal
|
|
|
|
self.player_address = player_address
|
|
|
|
self._hint_text: str = hint_text
|
2020-10-24 03:38:56 +00:00
|
|
|
|
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
class ALttPItem(Item):
|
2020-10-24 03:38:56 +00:00
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
game: str = "A Link to the Past"
|
2020-10-24 03:38:56 +00:00
|
|
|
|
2021-02-21 19:17:24 +00:00
|
|
|
def __init__(self, name='', advancement=False, type=None, code=None, pedestal_hint=None, pedestal_credit=None, sickkid_credit=None, zora_credit=None, witch_credit=None, fluteboy_credit=None, hint_text=None, player=None):
|
|
|
|
super(ALttPItem, self).__init__(name, advancement, code, player)
|
|
|
|
self.type = type
|
|
|
|
self._pedestal_hint_text = pedestal_hint
|
|
|
|
self.pedestal_credit_text = pedestal_credit
|
|
|
|
self.sickkid_credit_text = sickkid_credit
|
|
|
|
self.zora_credit_text = zora_credit
|
|
|
|
self.magicshop_credit_text = witch_credit
|
|
|
|
self.fluteboy_credit_text = fluteboy_credit
|
|
|
|
self._hint_text = hint_text
|