PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/FellStinger.cs

16 lines
378 B
C#
Raw Normal View History

2025-02-03 10:40:26 +00:00
using PkmnLib.Static;
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "fell_stinger")]
public class FellStinger : Script
{
/// <inheritdoc />
public override void OnAfterHits(IExecutingMove move, IPokemon target)
{
if (target.IsFainted)
{
move.User.ChangeStatBoost(Statistic.Attack, 2, true);
}
}
}