Files
Grinch-AP/worlds/grinch/Regions.py

36 lines
722 B
Python
Raw Normal View History

2025-07-25 16:24:08 -04:00
from BaseClasses import Region, MultiWorld
from .Locations import GrinchLocation, grinch_locations
from .Options import GrinchOptions
2025-07-25 19:33:51 -04:00
mainareas_list = [
"Mount Crumpit",
"Whoville",
"Who Forest",
"Who Dump",
"Who Lake"
]
subareas_list = [
"Post Office",
"City Hall",
"Countdown to X-Mas Tower",
"Ski Resort",
"Civic Center",
"Minefield",
"Outside Power Plant",
"Inside Power Plant",
"Submarine World",
"Scout's Hut",
"North Shore",
"Mayor's Villa",
"Sleigh Room"
]
2025-07-25 16:24:08 -04:00
2025-07-25 19:33:51 -04:00
supadow_list = [
"Spin N' Win Supadow",
"Dankamania Supadow",
"The Copter Race Contest Supadow"
]
2025-07-25 19:33:51 -04:00
def create_regions(player: int, world: World, options: GrinchOptions):