Skip to content

Commit

Permalink
LADX: Fixed Display Names In Options Page (#3584)
Browse files Browse the repository at this point in the history
* Fixed option group display names.

* Fixed display names for -at the moment- unused options.
  • Loading branch information
mrkssr authored Jun 29, 2024
1 parent 1c817e1 commit 6191ff4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion worlds/ladx/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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
Expand Down Expand Up @@ -113,13 +115,15 @@ class APTitleScreen(DefaultOnToggle):


class BossShuffle(Choice):
display_name = "Boss Shuffle"
none = 0
shuffle = 1
random = 2
default = none


class DungeonItemShuffle(Choice):
display_name = "Dungeon Item Shuffle"
option_original_dungeon = 0
option_own_dungeons = 1
option_own_world = 2
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -485,13 +491,15 @@ 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):
"""
[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", [
Expand Down

0 comments on commit 6191ff4

Please sign in to comment.