Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions worlds/ffx/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def generate_output(world: FFXWorld, player: int, output_directory: str) -> None
"CaptureDamage": world.options.capture_damage.value,
"EncounterWeighting": world.options.encounter_weighting.value,
"SkipContestOfAeons": world.options.skip_contest_of_aeons.value,
"HardcoreDreamsEnd": world.options.hardcore_dreams_end.value,
"OverdriveModes": world.options.overdrive_modes.value,
}

Expand Down
14 changes: 13 additions & 1 deletion worlds/ffx/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,14 +403,24 @@ class CaptureDamage(Choice):

class SkipContestOfAeons(Toggle):
"""
Sets whether to skip Contest of Aeons before fighting Yu Yevon
Sets whether to skip Contest of Aeons before fighting Yu Yevon.
Default is off.
"""
display_name = "Skip Contest Of Aeons"
default = 0
option_off = 0
option_on = 1

class HardcoreDreamsEnd(Toggle):
"""
Sets whether eternal auto-life is removed from the Contest of Aeons and Yu Yevon battles.
Default is off.
"""
display_name = "Hardcore Dream's End"
default = 0
option_off = 0
option_on = 1


class TrapPercentage(Range):
"""
Expand Down Expand Up @@ -465,6 +475,7 @@ class FFXOptions(PerGameCommonOptions):
always_capture: AlwaysCapture
capture_damage: CaptureDamage
skip_contest_of_aeons: SkipContestOfAeons
hardcore_dreams_end: HardcoreDreamsEnd
sphere_grid_randomization: SphereGridRandomization

# Ethically inspired by A Hat in Time's world
Expand Down Expand Up @@ -496,6 +507,7 @@ def create_option_groups() -> list[OptionGroup]:
JechtSpheres,
AlwaysSensor,
SkipContestOfAeons,
HardcoreDreamsEnd,
SphereGridRandomization,
],

Expand Down
Loading