PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Side/CraftyShieldEffect.cs

14 lines
360 B
C#
Raw Normal View History

2025-02-01 14:00:22 +00:00
using PkmnLib.Static.Moves;
namespace PkmnLib.Plugin.Gen7.Scripts.Side;
[Script(ScriptCategory.Side, "crafty_shield")]
public class CraftyShieldEffect : Script
{
/// <inheritdoc />
public override void StopBeforeMove(IExecutingMove move, ref bool stop)
{
if (move.UseMove.Category == MoveCategory.Status)
stop = true;
}
}