16 lines
452 B
C#
16 lines
452 B
C#
|
using PkmnLib.Dynamic.Models;
|
||
|
using PkmnLib.Dynamic.ScriptHandling;
|
||
|
using PkmnLib.Dynamic.ScriptHandling.Registry;
|
||
|
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "flinch")]
|
||
|
public class Flinch : Script
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||
|
{
|
||
|
target.Volatile.Add(new FlinchEffect());
|
||
|
}
|
||
|
}
|