namespace PkmnLib.Plugin.Gen7.Scripts.Abilities; /// /// Simple is an ability that doubles the effect of stat changes. /// /// Bulbapedia - Simple /// [Script(ScriptCategory.Ability, "simple")] public class Simple : Script { /// public override void ChangeStatBoostChange(IPokemon target, Statistic stat, bool selfInflicted, ref sbyte amount) { amount = amount.MultiplyOrMax(2); } }