Archipelago/worlds/hk/Regions.py

14 lines
589 B
Python
Raw Normal View History

2021-02-24 05:02:51 +00:00
# generated by https://github.com/Berserker66/HollowKnight.RandomizerMod/blob/master/extract_data.py
# do not edit manually
def create_regions(world, player: int):
from . import create_region
from .Items import item_table
from .Locations import lookup_name_to_id
world.regions += [
create_region(world, player, 'Menu', None, ['Hollow Nest S&Q']),
create_region(world, player, 'Hollow Nest', [location for location in lookup_name_to_id] +
[item_name for item_name, item_data in item_table.items() if item_data.type == "Event"])
]