Deukhoofd cbd4340b13
All checks were successful
Build / Build (push) Successful in 47s
Make another pass through moves file
2025-05-18 14:15:37 +02:00

15 lines
517 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
[Script(ScriptCategory.Pokemon, "spiky_shield")]
public class SpikyShieldEffect : ProtectionEffectScript
{
/// <inheritdoc />
public override void BlockIncomingHit(IExecutingMove executingMove, IPokemon target, byte hitIndex, ref bool block)
{
base.BlockIncomingHit(executingMove, target, hitIndex, ref block);
if (block)
{
executingMove.User.Damage(executingMove.User.MaxHealth / 8, DamageSource.Misc);
}
}
}