Deukhoofd 77d7b86a3c
All checks were successful
Build / Build (push) Successful in 1m2s
Implement most pokeballs
2025-07-20 11:15:45 +02:00

17 lines
442 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Items.Pokeballs;
[ItemScript("fast_ball")]
public class FastBall : PokeballScript
{
/// <inheritdoc />
public FastBall(IItem item) : base(item)
{
}
/// <inheritdoc />
public override void ChangeCatchRate(IPokemon target, ref byte catchRate)
{
var modifier = target.Form.BaseStats.Speed >= 100 ? 4f : 1f;
catchRate = catchRate.MultiplyOrMax(modifier);
}
}