TUNIC: Reorder options (#4491)
* Reorder options * Also make ability shuffling on by default
This commit is contained in:
parent
d218dec826
commit
0d6db291de
|
@ -29,7 +29,7 @@ class KeysBehindBosses(Toggle):
|
||||||
display_name = "Keys Behind Bosses"
|
display_name = "Keys Behind Bosses"
|
||||||
|
|
||||||
|
|
||||||
class AbilityShuffling(Toggle):
|
class AbilityShuffling(DefaultOnToggle):
|
||||||
"""
|
"""
|
||||||
Locks the usage of Prayer, Holy Cross*, and the Icebolt combo until the relevant pages of the manual have been found.
|
Locks the usage of Prayer, Holy Cross*, and the Icebolt combo until the relevant pages of the manual have been found.
|
||||||
If playing Hexagon Quest, abilities are instead randomly unlocked after obtaining 25%, 50%, and 75% of the required Hexagon goal amount.
|
If playing Hexagon Quest, abilities are instead randomly unlocked after obtaining 25%, 50%, and 75% of the required Hexagon goal amount.
|
||||||
|
@ -290,30 +290,37 @@ class LogicRules(Choice):
|
||||||
@dataclass
|
@dataclass
|
||||||
class TunicOptions(PerGameCommonOptions):
|
class TunicOptions(PerGameCommonOptions):
|
||||||
start_inventory_from_pool: StartInventoryPool
|
start_inventory_from_pool: StartInventoryPool
|
||||||
|
|
||||||
sword_progression: SwordProgression
|
sword_progression: SwordProgression
|
||||||
start_with_sword: StartWithSword
|
start_with_sword: StartWithSword
|
||||||
keys_behind_bosses: KeysBehindBosses
|
keys_behind_bosses: KeysBehindBosses
|
||||||
ability_shuffling: AbilityShuffling
|
ability_shuffling: AbilityShuffling
|
||||||
shuffle_ladders: ShuffleLadders
|
|
||||||
entrance_rando: EntranceRando
|
|
||||||
fixed_shop: FixedShop
|
|
||||||
fool_traps: FoolTraps
|
fool_traps: FoolTraps
|
||||||
|
laurels_location: LaurelsLocation
|
||||||
|
|
||||||
hexagon_quest: HexagonQuest
|
hexagon_quest: HexagonQuest
|
||||||
hexagon_goal: HexagonGoal
|
hexagon_goal: HexagonGoal
|
||||||
extra_hexagon_percentage: ExtraHexagonPercentage
|
extra_hexagon_percentage: ExtraHexagonPercentage
|
||||||
laurels_location: LaurelsLocation
|
|
||||||
|
shuffle_ladders: ShuffleLadders
|
||||||
|
grass_randomizer: GrassRandomizer
|
||||||
|
local_fill: LocalFill
|
||||||
|
|
||||||
|
entrance_rando: EntranceRando
|
||||||
|
fixed_shop: FixedShop
|
||||||
|
|
||||||
combat_logic: CombatLogic
|
combat_logic: CombatLogic
|
||||||
lanternless: Lanternless
|
lanternless: Lanternless
|
||||||
maskless: Maskless
|
maskless: Maskless
|
||||||
grass_randomizer: GrassRandomizer
|
|
||||||
local_fill: LocalFill
|
|
||||||
laurels_zips: LaurelsZips
|
laurels_zips: LaurelsZips
|
||||||
ice_grappling: IceGrappling
|
ice_grappling: IceGrappling
|
||||||
ladder_storage: LadderStorage
|
ladder_storage: LadderStorage
|
||||||
ladder_storage_without_items: LadderStorageWithoutItems
|
ladder_storage_without_items: LadderStorageWithoutItems
|
||||||
|
|
||||||
plando_connections: TunicPlandoConnections
|
plando_connections: TunicPlandoConnections
|
||||||
|
|
||||||
logic_rules: LogicRules
|
logic_rules: LogicRules
|
||||||
|
|
||||||
|
|
||||||
tunic_option_groups = [
|
tunic_option_groups = [
|
||||||
OptionGroup("Logic Options", [
|
OptionGroup("Logic Options", [
|
||||||
|
|
Loading…
Reference in New Issue