namespace PkmnLib.Plugin.Gen7.Scripts.Side; [Script(ScriptCategory.Side, "tailwind")] public class TailwindEffect : Script { private int _duration = 3; /// public override void ChangeSpeed(ITurnChoice choice, ref uint speed) { speed *= 2; } /// public override void OnEndTurn(IBattle battle) { _duration--; if (_duration <= 0) RemoveSelf(); } }