17 lines
532 B
C#
17 lines
532 B
C#
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "miracle_eye")]
|
|
public class MiracleEye : Script, IScriptOnSecondaryEffect
|
|
{
|
|
/// <inheritdoc />
|
|
public void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
if (target.StatBoost.Evasion > 0)
|
|
{
|
|
target.ChangeStatBoost(Statistic.Evasion, (sbyte)-target.StatBoost.Evasion, false, false);
|
|
}
|
|
target.Volatile.Add(new MiracleEyeEffect());
|
|
}
|
|
} |