16 lines
378 B
C#
16 lines
378 B
C#
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|