Add "Fake" (Randomizer-only) Hollow Knight items

This commit is contained in:
Fabian Dill
2021-02-26 21:03:16 +01:00
parent c9fc446d13
commit abcc2690f0
7 changed files with 141 additions and 100 deletions

View File

@@ -1,5 +1,9 @@
import enum
__all__ = {"lookup_any_item_id_to_name",
"lookup_any_location_id_to_name"}
"lookup_any_location_id_to_name",
"network_data_package",
"Games"}
from .alttp.Items import lookup_id_to_name as alttp
from .hk.Items import lookup_id_to_name as hk
@@ -13,3 +17,9 @@ lookup_any_location_id_to_name = {**Regions.lookup_id_to_name, **Locations.looku
network_data_package = {"lookup_any_location_id_to_name": lookup_any_location_id_to_name,
"lookup_any_item_id_to_name": lookup_any_item_id_to_name,
"version": 1}
@enum.unique
class Games(str, enum.Enum):
HK = "Hollow Knight"
LTTP = "A Link to the Past"