namespace PkmnLib.Plugin.Gen7.Scripts.Moves; [Script(ScriptCategory.Move, "celebrate")] public class Celebrate : Script { /// public override void PreventMoveSelection(IMoveChoice choice, ref bool prevent) { // This move is mostly useless, and it's not worth the effort to implement it. // Prevent it from being selected. prevent = true; } }