Deukhoofd b090aa65f9
All checks were successful
Build / Build (push) Successful in 48s
First couple abilities implemented
2025-05-31 12:29:03 +02:00

15 lines
463 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
[Script(ScriptCategory.Ability, "analytic")]
public class Analytic : Script
{
/// <inheritdoc />
public override void ChangeDamageModifier(IExecutingMove move, IPokemon target, byte hit, ref float modifier)
{
if (move.Battle.ChoiceQueue?.HasNext() == false)
{
move.Battle.EventHook.Invoke(new AbilityTriggerEvent(move.User));
modifier *= 1.3f;
}
}
}