19 lines
582 B
C#
19 lines
582 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
[Script(ScriptCategory.Ability, "anger_point")]
|
|
public class AngerPoint : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void OnIncomingHit(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
if (move.GetHitData(target, hit).IsCritical)
|
|
{
|
|
EventBatchId batchId = new();
|
|
move.Battle.EventHook.Invoke(new AbilityTriggerEvent(target)
|
|
{
|
|
BatchId = batchId,
|
|
});
|
|
target.ChangeStatBoost(Statistic.Attack, 12, true, batchId);
|
|
}
|
|
}
|
|
} |