PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/PreventFoesExit.cs

13 lines
369 B
C#

using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "prevent_foes_exit")]
public class PreventFoesExit : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
move.User.Volatile.Add(new PreventFoesExitEffect());
}
}