diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-12 11:01:30 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-12 11:01:30 -0400 |
commit | bb4e4e308f8f73b1be8b717b5c0478a342c1196d (patch) | |
tree | dc21b2b529688ac1ab2b22cb3b8e3c1d4f672832 /apworld/options.py | |
parent | 7426eb86fb2e7313607493becab262fe3115ce7b (diff) | |
download | lingo2-archipelago-bb4e4e308f8f73b1be8b717b5c0478a342c1196d.tar.gz lingo2-archipelago-bb4e4e308f8f73b1be8b717b5c0478a342c1196d.tar.bz2 lingo2-archipelago-bb4e4e308f8f73b1be8b717b5c0478a342c1196d.zip |
Added gallery painting shuffle
Diffstat (limited to 'apworld/options.py')
-rw-r--r-- | apworld/options.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apworld/options.py b/apworld/options.py index 240f8af..4f0b32a 100644 --- a/apworld/options.py +++ b/apworld/options.py | |||
@@ -16,6 +16,11 @@ class ShuffleControlCenterColors(Toggle): | |||
16 | display_name = "Shuffle Control Center Colors" | 16 | display_name = "Shuffle Control Center Colors" |
17 | 17 | ||
18 | 18 | ||
19 | class ShuffleGalleryPaintings(Toggle): | ||
20 | """If enabled, gallery paintings will appear from receiving an item rather than by triggering them normally.""" | ||
21 | display_name = "Shuffle Gallery Paintings" | ||
22 | |||
23 | |||
19 | class ShuffleLetters(Choice): | 24 | class ShuffleLetters(Choice): |
20 | """ | 25 | """ |
21 | Controls how letter unlocks are handled. Note that H1, I1, N1, and T1 will always be present at their vanilla | 26 | Controls how letter unlocks are handled. Note that H1, I1, N1, and T1 will always be present at their vanilla |
@@ -125,6 +130,7 @@ class VictoryCondition(Choice): | |||
125 | class Lingo2Options(PerGameCommonOptions): | 130 | class Lingo2Options(PerGameCommonOptions): |
126 | shuffle_doors: ShuffleDoors | 131 | shuffle_doors: ShuffleDoors |
127 | shuffle_control_center_colors: ShuffleControlCenterColors | 132 | shuffle_control_center_colors: ShuffleControlCenterColors |
133 | shuffle_gallery_paintings: ShuffleGalleryPaintings | ||
128 | shuffle_letters: ShuffleLetters | 134 | shuffle_letters: ShuffleLetters |
129 | shuffle_symbols: ShuffleSymbols | 135 | shuffle_symbols: ShuffleSymbols |
130 | keyholder_sanity: KeyholderSanity | 136 | keyholder_sanity: KeyholderSanity |