diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-08 18:35:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 17:35:12 -0600 |
commit | bbbbc71bee25cfd22c5304f98f5a7881383585a3 (patch) | |
tree | d27581db7b8db03da4b731fe8c2d5072d3162cf8 /test/TestOptions.py | |
download | lingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.tar.gz lingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.tar.bz2 lingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.zip |
Lingo: New game (#1806)
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>
Diffstat (limited to 'test/TestOptions.py')
-rw-r--r-- | test/TestOptions.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/TestOptions.py b/test/TestOptions.py new file mode 100644 index 0000000..1769677 --- /dev/null +++ b/test/TestOptions.py | |||
@@ -0,0 +1,31 @@ | |||
1 | from . import LingoTestBase | ||
2 | |||
3 | |||
4 | class TestMultiShuffleOptions(LingoTestBase): | ||
5 | options = { | ||
6 | "shuffle_doors": "complex", | ||
7 | "progressive_orange_tower": "true", | ||
8 | "shuffle_colors": "true", | ||
9 | "shuffle_paintings": "true", | ||
10 | "early_color_hallways": "true" | ||
11 | } | ||
12 | |||
13 | |||
14 | class TestPanelsanity(LingoTestBase): | ||
15 | options = { | ||
16 | "shuffle_doors": "complex", | ||
17 | "progressive_orange_tower": "true", | ||
18 | "location_checks": "insanity", | ||
19 | "shuffle_colors": "true" | ||
20 | } | ||
21 | |||
22 | |||
23 | class TestAllPanelHunt(LingoTestBase): | ||
24 | options = { | ||
25 | "shuffle_doors": "complex", | ||
26 | "progressive_orange_tower": "true", | ||
27 | "shuffle_colors": "true", | ||
28 | "victory_condition": "level_2", | ||
29 | "level_2_requirement": "800", | ||
30 | "early_color_hallways": "true" | ||
31 | } | ||