All locations have their affiliated addresses ready! Started region implementation

This commit is contained in:
MarioSpore
2025-07-26 20:51:05 -04:00
parent 17aebc940a
commit 3c622eefe4
4 changed files with 78 additions and 21 deletions

View File

@@ -1,3 +1,6 @@
from .Locations import grinch_locations_to_id
from .Items import grinch_items_to_id
from typing import ClassVar
from worlds.AutoWorld import World
@@ -9,5 +12,6 @@ class GrinchWorld(World):
options_dataclass = Options.GrinchOptions
options = Options.GrinchOptions
topology_present = True #not an open world game, very linear
item_name_to_id =
location_name_to_id =
item_name_to_id: ClassVar[dict[str,int]] = grinch_items_to_id()
location_name_to_id = ClassVar[dict[str,int]] = grinch_locations_to_id()
required_client_version = (0, 6, 2)