Adds double ability triggers

This commit is contained in:
infinitefusion
2023-05-27 13:49:33 -04:00
parent 1182afbea3
commit 7bbb18ac43
16 changed files with 136 additions and 3 deletions

View File

@@ -36,7 +36,16 @@ class ExperimentalOptionsScene < PokemonOption_Scene
proc { |value|
$game_switches[SWITCH_NO_LEVELS_MODE] = value == 0
}, "All Pokémon use their base stats, regardless of levels."
)
),
EnumOption.new(_INTL("Double abilities"), [_INTL("On"), _INTL("Off")],
proc {
$game_switches[SWITCH_DOUBLE_ABILITIES] ? 0 : 1
},
proc { |value|
$game_switches[SWITCH_DOUBLE_ABILITIES] = value == 0
}, "Fused Pokémon have two abilities at the same time"
)
]
return options
end