namespace PkmnLib.Plugin.Gen7.Scripts.Side; [Script(ScriptCategory.Side, "swamp_effect")] public class SwampEffect : Script { private int _turns = 5; /// public override void ChangeSpeed(ITurnChoice choice, ref uint speed) { speed /= 4; } /// public override void OnEndTurn(IScriptSource owner, IBattle battle) { _turns--; if (_turns <= 0) RemoveSelf(); } }