mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-07-16 02:30:44 -07:00
17 lines
355 B
Python
17 lines
355 B
Python
import typing
|
|
from BaseClasses import Item
|
|
from worlds.dark_souls_3.data.locations_data import dictionary_table
|
|
|
|
|
|
class ItemData(typing.NamedTuple):
|
|
code: int
|
|
progression: bool
|
|
|
|
|
|
class DarkSouls3Item(Item):
|
|
game: str = "Dark Souls III"
|
|
|
|
@staticmethod
|
|
def get_item_name_to_id() -> typing.Dict[str, int]:
|
|
return dictionary_table
|