This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user