14 lines
453 B
C#
14 lines
453 B
C#
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "flatter")]
|
|
public class Flatter : Script, IScriptOnSecondaryEffect
|
|
{
|
|
/// <inheritdoc />
|
|
public void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
target.ChangeStatBoost(Statistic.SpecialAttack, 1, false, false);
|
|
target.Volatile.StackOrAdd("confusion", () => new Confusion());
|
|
}
|
|
} |