9 lines
352 B
Python
9 lines
352 B
Python
def create_regions(world, player: int):
|
|
from . import create_region
|
|
from .Locations import lookup_name_to_id as location_lookup_name_to_id
|
|
|
|
world.regions += [
|
|
create_region(world, player, 'Menu', None, ['Lifepod 5']),
|
|
create_region(world, player, 'Planet 4546B', [location for location in location_lookup_name_to_id])
|
|
]
|