namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon; [Script(ScriptCategory.Pokemon, "block")] public class BlockEffect : Script, IScriptPreventSelfRunAway, IScriptPreventSelfSwitch { /// public void PreventSelfRunAway(IFleeChoice choice, ref bool prevent) => prevent = true; /// public void PreventSelfSwitch(ISwitchChoice choice, ref bool prevent) => prevent = true; }