18 lines
535 B
C#
18 lines
535 B
C#
using PkmnLib.Static.Utils;
|
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
[Script(ScriptCategory.Ability, "increased_stab")]
|
|
public class IncreasedStab : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void ChangeStabModifier(IExecutingMove executingMove, IPokemon target, byte hitNumber,
|
|
ref float modifier)
|
|
{
|
|
if (modifier.IsApproximatelyEqualTo(1.5f))
|
|
{
|
|
executingMove.Battle.EventHook.Invoke(new AbilityTriggerEvent(executingMove.User));
|
|
modifier = 2.0f;
|
|
}
|
|
}
|
|
} |