Files
PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/HighJumpKick.cs
Deukhoofd d2a82b5fe3
All checks were successful
Build / Build (push) Successful in 3m12s
Many more tests and fixes
2026-08-27 17:11:12 +02:00

23 lines
624 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "high_jump_kick")]
public class HighJumpKick : Script, IScriptOnAfterHits
{
public void OnAfterHits(IExecutingMove move, IPokemon target)
{
var damage = move.Hits.Where(h => h.HasExecuted).Sum(h => h.Damage);
if (damage == 0)
{
DoRecoil(move);
}
}
private static void DoRecoil(IExecutingMove move)
{
var maxHp = move.User.BoostedStats.Hp;
var recoil = maxHp / 2;
if (recoil == 0)
return;
move.User.Damage(recoil, DamageSource.Misc);
}
}