using PkmnLib.Static.Moves; namespace PkmnLib.Plugin.Gen7.Scripts.Moves; [Script(ScriptCategory.Move, "sucker_punch")] public class SuckerPunch : Script, IScriptOnBeforeHit { /// public void OnBeforeHit(IExecutingMove move, IPokemon target, byte hitIndex) { var targetChoice = move.Battle.ChoiceQueue?.Where(x => x.User == target).FirstOrDefault(); if (targetChoice is not IMoveChoice moveChoice || moveChoice.ChosenMove.MoveData.Category == MoveCategory.Status) { move.GetHitData(target, hitIndex).Fail(); } } }