Implement most pokeballs
All checks were successful
Build / Build (push) Successful in 1m2s

This commit is contained in:
2025-07-20 11:15:45 +02:00
parent db3f7f2403
commit 77d7b86a3c
19 changed files with 452 additions and 38 deletions

View File

@@ -0,0 +1,24 @@
namespace PkmnLib.Plugin.Gen7.Scripts.Items.Pokeballs;
[ItemScript("timer_ball")]
public class TimerBall : PokeballScript
{
/// <inheritdoc />
public TimerBall(IItem item) : base(item)
{
}
/// <inheritdoc />
public override void ChangeCatchRate(IPokemon target, ref byte catchRate)
{
var battleData = target.BattleData;
if (battleData is null)
return;
var turns = battleData.Battle.CurrentTurnNumber;
var modifier = 1 + turns * (1229 / 4096f);
if (modifier > 4f)
modifier = 4f;
catchRate = catchRate.MultiplyOrMax(modifier);
}
}