diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-26 04:53:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-26 10:53:11 +0200 |
| commit | 7641d9590110fa7b4901c7f7ca0384392ef24375 (patch) | |
| tree | 8efdfa5be3a88879a690a4a7351eb7b635989dc7 /test/TestSunwarps.py | |
| parent | 00c16023c45301224400a06f31f637fdedba00ee (diff) | |
| download | lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.gz lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.tar.bz2 lingo-apworld-7641d9590110fa7b4901c7f7ca0384392ef24375.zip | |
Lingo: Add panels mode door shuffle (#3163)
* Created panels mode door shuffle * Added some panel door item names * Remove RUNT TURN panel door Not really useful. * Fix logic with First SIX related stuff * Add group_doors to slot data * Fix LEVEL 2 behavior with panels mode * Fixed unit tests * Fixed duplicate IDs from merge * Just regenerated new IDs * Fixed duplication of color and door group items * Removed unnecessary unit test option * Fix The Seeker being achievable without entrance door * Fix The Observant being achievable without locked panels * Added some more panel doors * Added Progressive Suits Area * Lingo: Fix Basement access with THE MASTER * Added indirect conditions for MASTER-blocked entrances * Fixed Incomparable achievement access * Fix STAIRS panel logic * Fix merge error with good items * Is this clearer? * DREAD and TURN LEARN * Allow a weird edge case for reduced locations Panels mode door shuffle + grouped doors + color shuffle + pilgrimage enabled is exactly the right number of items for reduced locations. Removing color shuffle also allows for disabling pilgrimage, adding sunwarp locking, or both, with a couple of locations left over. * Prevent small sphere one on panels mode * Added shuffle_doors aliases for old options * Fixed a unit test * Updated datafile * Tweaked requirements for reduced locations * Added player name to OptionError messages * Update generated.dat
Diffstat (limited to 'test/TestSunwarps.py')
| -rw-r--r-- | test/TestSunwarps.py | 21 |
1 files changed, 14 insertions, 7 deletions
| diff --git a/test/TestSunwarps.py b/test/TestSunwarps.py index e8e913c..66ba3af 100644 --- a/test/TestSunwarps.py +++ b/test/TestSunwarps.py | |||
| @@ -19,7 +19,8 @@ class TestVanillaDoorsNormalSunwarps(LingoTestBase): | |||
| 19 | 19 | ||
| 20 | class TestSimpleDoorsNormalSunwarps(LingoTestBase): | 20 | class TestSimpleDoorsNormalSunwarps(LingoTestBase): |
| 21 | options = { | 21 | options = { |
| 22 | "shuffle_doors": "simple", | 22 | "shuffle_doors": "doors", |
| 23 | "group_doors": "true", | ||
| 23 | "sunwarp_access": "normal" | 24 | "sunwarp_access": "normal" |
| 24 | } | 25 | } |
| 25 | 26 | ||
| @@ -37,7 +38,8 @@ class TestSimpleDoorsNormalSunwarps(LingoTestBase): | |||
| 37 | 38 | ||
| 38 | class TestSimpleDoorsDisabledSunwarps(LingoTestBase): | 39 | class TestSimpleDoorsDisabledSunwarps(LingoTestBase): |
| 39 | options = { | 40 | options = { |
| 40 | "shuffle_doors": "simple", | 41 | "shuffle_doors": "doors", |
| 42 | "group_doors": "true", | ||
| 41 | "sunwarp_access": "disabled" | 43 | "sunwarp_access": "disabled" |
| 42 | } | 44 | } |
| 43 | 45 | ||
| @@ -56,7 +58,8 @@ class TestSimpleDoorsDisabledSunwarps(LingoTestBase): | |||
| 56 | 58 | ||
| 57 | class TestSimpleDoorsUnlockSunwarps(LingoTestBase): | 59 | class TestSimpleDoorsUnlockSunwarps(LingoTestBase): |
| 58 | options = { | 60 | options = { |
| 59 | "shuffle_doors": "simple", | 61 | "shuffle_doors": "doors", |
| 62 | "group_doors": "true", | ||
| 60 | "sunwarp_access": "unlock" | 63 | "sunwarp_access": "unlock" |
| 61 | } | 64 | } |
| 62 | 65 | ||
| @@ -78,7 +81,8 @@ class TestSimpleDoorsUnlockSunwarps(LingoTestBase): | |||
| 78 | 81 | ||
| 79 | class TestComplexDoorsNormalSunwarps(LingoTestBase): | 82 | class TestComplexDoorsNormalSunwarps(LingoTestBase): |
| 80 | options = { | 83 | options = { |
| 81 | "shuffle_doors": "complex", | 84 | "shuffle_doors": "doors", |
| 85 | "group_doors": "false", | ||
| 82 | "sunwarp_access": "normal" | 86 | "sunwarp_access": "normal" |
| 83 | } | 87 | } |
| 84 | 88 | ||
| @@ -96,7 +100,8 @@ class TestComplexDoorsNormalSunwarps(LingoTestBase): | |||
| 96 | 100 | ||
| 97 | class TestComplexDoorsDisabledSunwarps(LingoTestBase): | 101 | class TestComplexDoorsDisabledSunwarps(LingoTestBase): |
| 98 | options = { | 102 | options = { |
| 99 | "shuffle_doors": "complex", | 103 | "shuffle_doors": "doors", |
| 104 | "group_doors": "false", | ||
| 100 | "sunwarp_access": "disabled" | 105 | "sunwarp_access": "disabled" |
| 101 | } | 106 | } |
| 102 | 107 | ||
| @@ -115,7 +120,8 @@ class TestComplexDoorsDisabledSunwarps(LingoTestBase): | |||
| 115 | 120 | ||
| 116 | class TestComplexDoorsIndividualSunwarps(LingoTestBase): | 121 | class TestComplexDoorsIndividualSunwarps(LingoTestBase): |
| 117 | options = { | 122 | options = { |
| 118 | "shuffle_doors": "complex", | 123 | "shuffle_doors": "doors", |
| 124 | "group_doors": "false", | ||
| 119 | "sunwarp_access": "individual" | 125 | "sunwarp_access": "individual" |
| 120 | } | 126 | } |
| 121 | 127 | ||
| @@ -142,7 +148,8 @@ class TestComplexDoorsIndividualSunwarps(LingoTestBase): | |||
| 142 | 148 | ||
| 143 | class TestComplexDoorsProgressiveSunwarps(LingoTestBase): | 149 | class TestComplexDoorsProgressiveSunwarps(LingoTestBase): |
| 144 | options = { | 150 | options = { |
| 145 | "shuffle_doors": "complex", | 151 | "shuffle_doors": "doors", |
| 152 | "group_doors": "false", | ||
| 146 | "sunwarp_access": "progressive" | 153 | "sunwarp_access": "progressive" |
| 147 | } | 154 | } |
| 148 | 155 | ||
