diff options
Diffstat (limited to 'options.py')
-rw-r--r-- | options.py | 120 |
1 files changed, 81 insertions, 39 deletions
diff --git a/options.py b/options.py index 1c1f645..333b3e1 100644 --- a/options.py +++ b/options.py | |||
@@ -9,8 +9,12 @@ from .items import TRAP_ITEMS | |||
9 | 9 | ||
10 | class ShuffleDoors(Choice): | 10 | class ShuffleDoors(Choice): |
11 | """If on, opening doors will require their respective "keys". | 11 | """If on, opening doors will require their respective "keys". |
12 | In "simple", doors are sorted into logical groups, which are all opened by receiving an item. | 12 | |
13 | In "complex", the items are much more granular, and will usually only open a single door each.""" | 13 | - **Simple:** Doors are sorted into logical groups, which are all opened by |
14 | receiving an item. | ||
15 | - **Complex:** The items are much more granular, and will usually only open | ||
16 | a single door each. | ||
17 | """ | ||
14 | display_name = "Shuffle Doors" | 18 | display_name = "Shuffle Doors" |
15 | option_none = 0 | 19 | option_none = 0 |
16 | option_simple = 1 | 20 | option_simple = 1 |
@@ -19,24 +23,37 @@ class ShuffleDoors(Choice): | |||
19 | 23 | ||
20 | class ProgressiveOrangeTower(DefaultOnToggle): | 24 | class ProgressiveOrangeTower(DefaultOnToggle): |
21 | """When "Shuffle Doors" is on, this setting governs the manner in which the Orange Tower floors open up. | 25 | """When "Shuffle Doors" is on, this setting governs the manner in which the Orange Tower floors open up. |
22 | If off, there is an item for each floor of the tower, and each floor's item is the only one needed to access that floor. | 26 | |
23 | If on, there are six progressive items, which open up the tower from the bottom floor upward. | 27 | - **Off:** There is an item for each floor of the tower, and each floor's |
28 | item is the only one needed to access that floor. | ||
29 | - **On:** There are six progressive items, which open up the tower from the | ||
30 | bottom floor upward. | ||
24 | """ | 31 | """ |
25 | display_name = "Progressive Orange Tower" | 32 | display_name = "Progressive Orange Tower" |
26 | 33 | ||
27 | 34 | ||
28 | class ProgressiveColorful(DefaultOnToggle): | 35 | class ProgressiveColorful(DefaultOnToggle): |
29 | """When "Shuffle Doors" is on "complex", this setting governs the manner in which The Colorful opens up. | 36 | """When "Shuffle Doors" is on "complex", this setting governs the manner in which The Colorful opens up. |
30 | 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. | 37 | |
31 | If on, there are ten progressive items, which open up the sequence from White forward.""" | 38 | - **Off:** There is an item for each room of The Colorful, meaning that |
39 | random rooms in the middle of the sequence can open up without giving you | ||
40 | access to them. | ||
41 | - **On:** There are ten progressive items, which open up the sequence from | ||
42 | White forward. | ||
43 | """ | ||
32 | display_name = "Progressive Colorful" | 44 | display_name = "Progressive Colorful" |
33 | 45 | ||
34 | 46 | ||
35 | class LocationChecks(Choice): | 47 | class LocationChecks(Choice): |
36 | """Determines what locations are available. | 48 | """Determines what locations are available. |
37 | On "normal", there will be a location check for each panel set that would ordinarily open a door, as well as for achievement panels and a small handful of other panels. | 49 | |
38 | On "reduced", many of the locations that are associated with opening doors are removed. | 50 | - **Normal:** There will be a location check for each panel set that would |
39 | On "insanity", every individual panel in the game is a location check.""" | 51 | ordinarily open a door, as well as for achievement panels and a small |
52 | handful of other panels. | ||
53 | - **Reduced:** Many of the locations that are associated with opening doors | ||
54 | are removed. | ||
55 | - **Insanity:** Every individual panel in the game is a location check. | ||
56 | """ | ||
40 | display_name = "Location Checks" | 57 | display_name = "Location Checks" |
41 | option_normal = 0 | 58 | option_normal = 0 |
42 | option_reduced = 1 | 59 | option_reduced = 1 |
@@ -44,16 +61,20 @@ class LocationChecks(Choice): | |||
44 | 61 | ||
45 | 62 | ||
46 | class ShuffleColors(DefaultOnToggle): | 63 | class ShuffleColors(DefaultOnToggle): |
47 | """ | 64 | """If on, an item is added to the pool for every puzzle color (besides White). |
48 | If on, an item is added to the pool for every puzzle color (besides White). | 65 | |
49 | You will need to unlock the requisite colors in order to be able to solve puzzles of that color. | 66 | You will need to unlock the requisite colors in order to be able to solve |
67 | puzzles of that color. | ||
50 | """ | 68 | """ |
51 | display_name = "Shuffle Colors" | 69 | display_name = "Shuffle Colors" |
52 | 70 | ||
53 | 71 | ||
54 | class ShufflePanels(Choice): | 72 | class ShufflePanels(Choice): |
55 | """If on, the puzzles on each panel are randomized. | 73 | """If on, the puzzles on each panel are randomized. |
56 | On "rearrange", the puzzles are the same as the ones in the base game, but are placed in different areas.""" | 74 | |
75 | On "rearrange", the puzzles are the same as the ones in the base game, but | ||
76 | are placed in different areas. | ||
77 | """ | ||
57 | display_name = "Shuffle Panels" | 78 | display_name = "Shuffle Panels" |
58 | option_none = 0 | 79 | option_none = 0 |
59 | option_rearrange = 1 | 80 | option_rearrange = 1 |
@@ -66,22 +87,26 @@ class ShufflePaintings(Toggle): | |||
66 | 87 | ||
67 | class EnablePilgrimage(Toggle): | 88 | class EnablePilgrimage(Toggle): |
68 | """Determines how the pilgrimage works. | 89 | """Determines how the pilgrimage works. |
69 | If on, you are required to complete a pilgrimage in order to access the Pilgrim Antechamber. | 90 | |
70 | If off, the pilgrimage will be deactivated, and the sun painting will be added to the pool, even if door shuffle is off.""" | 91 | - **On:** You are required to complete a pilgrimage in order to access the |
92 | Pilgrim Antechamber. | ||
93 | - **Off:** The pilgrimage will be deactivated, and the sun painting will be | ||
94 | added to the pool, even if door shuffle is off. | ||
95 | """ | ||
71 | display_name = "Enable Pilgrimage" | 96 | display_name = "Enable Pilgrimage" |
72 | 97 | ||
73 | 98 | ||
74 | class PilgrimageAllowsRoofAccess(DefaultOnToggle): | 99 | class PilgrimageAllowsRoofAccess(DefaultOnToggle): |
75 | """ | 100 | """If on, you may use the Crossroads roof access during a pilgrimage (and you may be expected to do so). |
76 | If on, you may use the Crossroads roof access during a pilgrimage (and you may be expected to do so). | 101 | |
77 | Otherwise, pilgrimage will be deactivated when going up the stairs. | 102 | Otherwise, pilgrimage will be deactivated when going up the stairs. |
78 | """ | 103 | """ |
79 | display_name = "Allow Roof Access for Pilgrimage" | 104 | display_name = "Allow Roof Access for Pilgrimage" |
80 | 105 | ||
81 | 106 | ||
82 | class PilgrimageAllowsPaintings(DefaultOnToggle): | 107 | class PilgrimageAllowsPaintings(DefaultOnToggle): |
83 | """ | 108 | """If on, you may use paintings during a pilgrimage (and you may be expected to do so). |
84 | If on, you may use paintings during a pilgrimage (and you may be expected to do so). | 109 | |
85 | Otherwise, pilgrimage will be deactivated when going through a painting. | 110 | Otherwise, pilgrimage will be deactivated when going through a painting. |
86 | """ | 111 | """ |
87 | display_name = "Allow Paintings for Pilgrimage" | 112 | display_name = "Allow Paintings for Pilgrimage" |
@@ -89,11 +114,17 @@ class PilgrimageAllowsPaintings(DefaultOnToggle): | |||
89 | 114 | ||
90 | class SunwarpAccess(Choice): | 115 | class SunwarpAccess(Choice): |
91 | """Determines how access to sunwarps works. | 116 | """Determines how access to sunwarps works. |
92 | On "normal", all sunwarps are enabled from the start. | 117 | |
93 | On "disabled", all sunwarps are disabled. Pilgrimage must be disabled when this is used. | 118 | - **Normal:** All sunwarps are enabled from the start. |
94 | On "unlock", sunwarps start off disabled, and all six activate once you receive an item. | 119 | - **Disabled:** All sunwarps are disabled. Pilgrimage must be disabled when |
95 | On "individual", sunwarps start off disabled, and each has a corresponding item that unlocks it. | 120 | this is used. |
96 | On "progressive", sunwarps start off disabled, and they unlock in order using a progressive item.""" | 121 | - **Unlock:** Sunwarps start off disabled, and all six activate once you |
122 | receive an item. | ||
123 | - **Individual:** Sunwarps start off disabled, and each has a corresponding | ||
124 | item that unlocks it. | ||
125 | - **Progressive:** Sunwarps start off disabled, and they unlock in order | ||
126 | using a progressive item. | ||
127 | """ | ||
97 | display_name = "Sunwarp Access" | 128 | display_name = "Sunwarp Access" |
98 | option_normal = 0 | 129 | option_normal = 0 |
99 | option_disabled = 1 | 130 | option_disabled = 1 |
@@ -109,10 +140,16 @@ class ShuffleSunwarps(Toggle): | |||
109 | 140 | ||
110 | class VictoryCondition(Choice): | 141 | class VictoryCondition(Choice): |
111 | """Change the victory condition. | 142 | """Change the victory condition. |
112 | On "the_end", the goal is to solve THE END at the top of the tower. | 143 | |
113 | On "the_master", the goal is to solve THE MASTER at the top of the tower, after getting the number of achievements specified in the Mastery Achievements option. | 144 | - **The End:** the goal is to solve THE END at the top of the tower. |
114 | On "level_2", the goal is to solve LEVEL 2 in the second room, after solving the number of panels specified in the Level 2 Requirement option. | 145 | - **The Master:** The goal is to solve THE MASTER at the top of the tower, |
115 | On "pilgrimage", the goal is to solve PILGRIM in the Pilgrim Antechamber, typically after performing a Pilgrimage.""" | 146 | after getting the number of achievements specified in the Mastery |
147 | Achievements option. | ||
148 | - **Level 2:** The goal is to solve LEVEL 2 in the second room, after | ||
149 | solving the number of panels specified in the Level 2 Requirement option. | ||
150 | - **Pilgrimage:** The goal is to solve PILGRIM in the Pilgrim Antechamber, | ||
151 | typically after performing a Pilgrimage. | ||
152 | """ | ||
116 | display_name = "Victory Condition" | 153 | display_name = "Victory Condition" |
117 | option_the_end = 0 | 154 | option_the_end = 0 |
118 | option_the_master = 1 | 155 | option_the_master = 1 |
@@ -122,9 +159,12 @@ class VictoryCondition(Choice): | |||
122 | 159 | ||
123 | class MasteryAchievements(Range): | 160 | class MasteryAchievements(Range): |
124 | """The number of achievements required to unlock THE MASTER. | 161 | """The number of achievements required to unlock THE MASTER. |
125 | In the base game, 21 achievements are needed. | 162 | |
126 | If you include The Scientific and The Unchallenged, which are in the base game but are not counted for mastery, 23 would be required. | 163 | - In the base game, 21 achievements are needed. |
127 | If you include the custom achievement (The Wanderer), 24 would be required. | 164 | - If you include The Scientific and The Unchallenged, which are in the base |
165 | game but are not counted for mastery, 23 would be required. | ||
166 | - If you include the custom achievement (The Wanderer), 24 would be | ||
167 | required. | ||
128 | """ | 168 | """ |
129 | display_name = "Mastery Achievements" | 169 | display_name = "Mastery Achievements" |
130 | range_start = 1 | 170 | range_start = 1 |
@@ -134,9 +174,10 @@ class MasteryAchievements(Range): | |||
134 | 174 | ||
135 | class Level2Requirement(Range): | 175 | class Level2Requirement(Range): |
136 | """The number of panel solves required to unlock LEVEL 2. | 176 | """The number of panel solves required to unlock LEVEL 2. |
137 | In the base game, 223 are needed. | 177 | |
138 | Note that this count includes ANOTHER TRY. | 178 | In the base game, 223 are needed. Note that this count includes ANOTHER TRY. |
139 | When set to 1, the panel hunt is disabled, and you can access LEVEL 2 for free. | 179 | When set to 1, the panel hunt is disabled, and you can access LEVEL 2 for |
180 | free. | ||
140 | """ | 181 | """ |
141 | display_name = "Level 2 Requirement" | 182 | display_name = "Level 2 Requirement" |
142 | range_start = 1 | 183 | range_start = 1 |
@@ -145,9 +186,10 @@ class Level2Requirement(Range): | |||
145 | 186 | ||
146 | 187 | ||
147 | class EarlyColorHallways(Toggle): | 188 | class EarlyColorHallways(Toggle): |
148 | """ | 189 | """When on, a painting warp to the color hallways area will appear in the starting room. |
149 | When on, a painting warp to the color hallways area will appear in the starting room. | 190 | |
150 | This lets you avoid being trapped in the starting room for long periods of time when door shuffle is on. | 191 | This lets you avoid being trapped in the starting room for long periods of |
192 | time when door shuffle is on. | ||
151 | """ | 193 | """ |
152 | display_name = "Early Color Hallways" | 194 | display_name = "Early Color Hallways" |
153 | 195 | ||
@@ -161,8 +203,8 @@ class TrapPercentage(Range): | |||
161 | 203 | ||
162 | 204 | ||
163 | class TrapWeights(OptionDict): | 205 | class TrapWeights(OptionDict): |
164 | """ | 206 | """Specify the distribution of traps that should be placed into the pool. |
165 | Specify the distribution of traps that should be placed into the pool. | 207 | |
166 | If you don't want a specific type of trap, set the weight to zero. | 208 | If you don't want a specific type of trap, set the weight to zero. |
167 | """ | 209 | """ |
168 | display_name = "Trap Weights" | 210 | display_name = "Trap Weights" |