This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user