namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Pressure is an ability that makes the opponent use more PP when using moves against the Pokémon.
///
/// Bulbapedia - Pressure
///
[Script(ScriptCategory.Ability, "pressure")]
public class Pressure : Script
{
///
public override void ModifyPPUsedForIncomingMove(IExecutingMove executingMove, ref byte ppUsed)
{
if (ppUsed == byte.MaxValue)
return;
ppUsed++;
}
}