mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com> Co-authored-by: Phar <zach@alliware.com>
32 lines
796 B
Python
32 lines
796 B
Python
from . import LingoTestBase
|
|
|
|
|
|
class TestMultiShuffleOptions(LingoTestBase):
|
|
options = {
|
|
"shuffle_doors": "complex",
|
|
"progressive_orange_tower": "true",
|
|
"shuffle_colors": "true",
|
|
"shuffle_paintings": "true",
|
|
"early_color_hallways": "true"
|
|
}
|
|
|
|
|
|
class TestPanelsanity(LingoTestBase):
|
|
options = {
|
|
"shuffle_doors": "complex",
|
|
"progressive_orange_tower": "true",
|
|
"location_checks": "insanity",
|
|
"shuffle_colors": "true"
|
|
}
|
|
|
|
|
|
class TestAllPanelHunt(LingoTestBase):
|
|
options = {
|
|
"shuffle_doors": "complex",
|
|
"progressive_orange_tower": "true",
|
|
"shuffle_colors": "true",
|
|
"victory_condition": "level_2",
|
|
"level_2_requirement": "800",
|
|
"early_color_hallways": "true"
|
|
}
|