Remove Fake Hollow Knight Items and Locations

Add GetDataPackage Network system
This commit is contained in:
Fabian Dill
2021-02-25 02:07:28 +01:00
parent 499f67c586
commit f19291aaed
9 changed files with 84 additions and 68 deletions

View File

@@ -9,3 +9,9 @@ lookup_any_item_id_to_name = {**alttp, **hk}
from .alttp import Regions
from .hk import Locations
lookup_any_location_id_to_name = {**Regions.lookup_id_to_name, **Locations.lookup_id_to_name}
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}
print(network_data_package)