mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Core: Remove ALTTP cruft from BaseClasses (#1451)
This commit is contained in:
@@ -4,7 +4,6 @@ from enum import IntEnum
|
||||
|
||||
from BaseClasses import Location, Item, ItemClassification, Region, MultiWorld
|
||||
|
||||
|
||||
class ALttPLocation(Location):
|
||||
game: str = "A Link to the Past"
|
||||
crystal: bool
|
||||
@@ -81,6 +80,12 @@ class LTTPRegionType(IntEnum):
|
||||
class LTTPRegion(Region):
|
||||
type: LTTPRegionType
|
||||
|
||||
# will be set after making connections.
|
||||
is_light_world: bool = False
|
||||
is_dark_world: bool = False
|
||||
|
||||
shop: Optional = None
|
||||
|
||||
def __init__(self, name: str, type_: LTTPRegionType, hint: str, player: int, multiworld: MultiWorld):
|
||||
super().__init__(name, player, multiworld, hint)
|
||||
self.type = type_
|
||||
|
Reference in New Issue
Block a user