LADX: Fixed Display Names In Options Page (#3584)
* Fixed option group display names. * Fixed display names for -at the moment- unused options.
This commit is contained in:
parent
1c817e1eb7
commit
6191ff4b47
|
@ -52,6 +52,7 @@ class TextShuffle(DefaultOffToggle):
|
|||
[On] Shuffles all the text in the game
|
||||
[Off] (default) doesn't shuffle them.
|
||||
"""
|
||||
display_name = "Text Shuffle"
|
||||
|
||||
|
||||
class Rooster(DefaultOnToggle, LADXROption):
|
||||
|
@ -68,7 +69,8 @@ class Boomerang(Choice):
|
|||
[Normal] requires Magnifying Lens to get the boomerang.
|
||||
[Gift] The boomerang salesman will give you a random item, and the boomerang is shuffled.
|
||||
"""
|
||||
|
||||
display_name = "Boomerang"
|
||||
|
||||
normal = 0
|
||||
gift = 1
|
||||
default = gift
|
||||
|
@ -113,6 +115,7 @@ class APTitleScreen(DefaultOnToggle):
|
|||
|
||||
|
||||
class BossShuffle(Choice):
|
||||
display_name = "Boss Shuffle"
|
||||
none = 0
|
||||
shuffle = 1
|
||||
random = 2
|
||||
|
@ -120,6 +123,7 @@ class BossShuffle(Choice):
|
|||
|
||||
|
||||
class DungeonItemShuffle(Choice):
|
||||
display_name = "Dungeon Item Shuffle"
|
||||
option_original_dungeon = 0
|
||||
option_own_dungeons = 1
|
||||
option_own_world = 2
|
||||
|
@ -291,6 +295,7 @@ class Bowwow(Choice):
|
|||
[Normal] BowWow is in the item pool, but can be logically expected as a damage source.
|
||||
[Swordless] The progressive swords are removed from the item pool.
|
||||
"""
|
||||
display_name = "BowWow"
|
||||
normal = 0
|
||||
swordless = 1
|
||||
default = normal
|
||||
|
@ -466,6 +471,7 @@ class Music(Choice, LADXROption):
|
|||
[Shuffled] Shuffled Music
|
||||
[Off] No music
|
||||
"""
|
||||
display_name = "Music"
|
||||
ladxr_name = "music"
|
||||
option_vanilla = 0
|
||||
option_shuffled = 1
|
||||
|
@ -485,6 +491,7 @@ class WarpImprovements(DefaultOffToggle):
|
|||
[On] Adds remake style warp screen to the game. Choose your warp destination on the map after jumping in a portal and press B to select.
|
||||
[Off] No change
|
||||
"""
|
||||
display_name = "Warp Improvements"
|
||||
|
||||
|
||||
class AdditionalWarpPoints(DefaultOffToggle):
|
||||
|
@ -492,6 +499,7 @@ class AdditionalWarpPoints(DefaultOffToggle):
|
|||
[On] (requires warp improvements) Adds a warp point at Crazy Tracy's house (the Mambo teleport spot) and Eagle's Tower
|
||||
[Off] No change
|
||||
"""
|
||||
display_name = "Additional Warp Points"
|
||||
|
||||
ladx_option_groups = [
|
||||
OptionGroup("Goal Options", [
|
||||
|
|
Loading…
Reference in New Issue