Deukhoofd 7727f92f4e
All checks were successful
continuous-integration/drone/push Build is passing
Even more moves
2025-05-05 16:58:03 +02:00

14 lines
468 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
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);
}
}
}