using PkmnLib.Static.Utils; namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon; public class HelpingHandEffect : Script { /// public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref byte basePower) => basePower = basePower.MultiplyOrMax(1.5f); /// public override void OnEndTurn(IBattle battle) => RemoveSelf(); }