More moves implemented

This commit is contained in:
2025-03-08 15:48:33 +01:00
parent 77f1ab243b
commit 7f5088b763
15 changed files with 393 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "knock_off")]
public class KnockOff : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
if (target.RemoveHeldItemForBattle() is null)
{
move.GetHitData(target, hit).Fail();
}
}
}