namespace PkmnLib.Plugin.Gen7.Scripts.Items.Pokeballs;
[ItemScript("friend_ball")]
public class FriendBall : PokeballScript
{
///
public FriendBall(IItem item) : base(item)
{
}
///
public override void ChangeCatchRate(IPokemon target, ref byte catchRate)
{
}
///
public override void OnAfterSuccessfulCapture(IPokemon target)
{
target.Happiness = 200;
}
}