namespace PkmnLib.Plugin.Gen7.Scripts.Moves; [Script(ScriptCategory.Move, "chip_away")] public class ChipAway : Script { /// public override void BypassDefensiveStatBoosts(IExecutingMove move, IPokemon target, byte hit, ref bool bypass) { bypass = true; } // TODO: bypass evasion stat. }