mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-07-19 08:10:44 -07:00
11 lines
255 B
Python
11 lines
255 B
Python
import typing
|
|
from BaseClasses import Item
|
|
from worlds.dark_souls_3.data.items_data import item_dictionary_table
|
|
|
|
|
|
class DarkSouls3Item(Item):
|
|
|
|
@staticmethod
|
|
def get_item_name_to_id() -> typing.Dict[str, int]:
|
|
return item_dictionary_table
|