mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
18 lines
658 B
Python
18 lines
658 B
Python
import worlds.hk.Options
|
|
from BaseClasses import MultiWorld
|
|
from worlds.hk.Regions import create_regions
|
|
from worlds.hk import gen_hollow
|
|
|
|
from test.TestBase import TestBase
|
|
|
|
|
|
class TestVanilla(TestBase):
|
|
def setUp(self):
|
|
self.world = MultiWorld(1)
|
|
self.world.game[1] = "Hollow Knight"
|
|
for hk_option in worlds.hk.Options.hollow_knight_randomize_options:
|
|
setattr(self.world, hk_option, {1: True})
|
|
for hk_option, option in worlds.hk.Options.hollow_knight_skip_options.items():
|
|
setattr(self.world, hk_option, {1: option.default})
|
|
create_regions(self.world, 1)
|
|
gen_hollow(self.world, 1) |