summary refs log tree commit diff stats
path: root/options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options.py')
-rw-r--r--options.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/options.py b/options.py index c002086..ec6158f 100644 --- a/options.py +++ b/options.py
@@ -21,6 +21,13 @@ class ProgressiveOrangeTower(DefaultOnToggle):
21 display_name = "Progressive Orange Tower" 21 display_name = "Progressive Orange Tower"
22 22
23 23
24class ProgressiveColorful(DefaultOnToggle):
25 """When "Shuffle Doors" is on "complex", this setting governs the manner in which The Colorful opens up.
26 If off, there is an item for each room of The Colorful, meaning that random rooms in the middle of the sequence can open up without giving you access to them.
27 If on, there are ten progressive items, which open up the sequence from White forward."""
28 display_name = "Progressive Colorful"
29
30
24class LocationChecks(Choice): 31class LocationChecks(Choice):
25 """On "normal", there will be a location check for each panel set that would ordinarily open a door, as well as for 32 """On "normal", there will be a location check for each panel set that would ordinarily open a door, as well as for
26 achievement panels and a small handful of other panels. 33 achievement panels and a small handful of other panels.
@@ -117,6 +124,7 @@ class DeathLink(Toggle):
117class LingoOptions(PerGameCommonOptions): 124class LingoOptions(PerGameCommonOptions):
118 shuffle_doors: ShuffleDoors 125 shuffle_doors: ShuffleDoors
119 progressive_orange_tower: ProgressiveOrangeTower 126 progressive_orange_tower: ProgressiveOrangeTower
127 progressive_colorful: ProgressiveColorful
120 location_checks: LocationChecks 128 location_checks: LocationChecks
121 shuffle_colors: ShuffleColors 129 shuffle_colors: ShuffleColors
122 shuffle_panels: ShufflePanels 130 shuffle_panels: ShufflePanels