mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-07-19 13:00:44 -07:00
15 lines
326 B
Python
15 lines
326 B
Python
import typing
|
|
from BaseClasses import Location, Region, RegionType
|
|
from worlds.dark_souls_3.data.locations_data import dictionary_table
|
|
|
|
|
|
class LocationData(int):
|
|
code: int
|
|
|
|
|
|
class DarkSouls3Location(Location):
|
|
|
|
@staticmethod
|
|
def get_location_name_to_id() -> typing.Dict[str, int]:
|
|
return dictionary_table
|