blob: 1769677862431a36c7268aa8632bea6d65257f45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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"
}
|