More moves implemented
This commit is contained in:
16
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/FellStinger.cs
Normal file
16
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/FellStinger.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user