PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Celebrate.cs

13 lines
397 B
C#
Raw Normal View History

2025-01-27 11:18:48 +00:00
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "celebrate")]
public class Celebrate : Script
{
/// <inheritdoc />
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;
}
}