More move scripts

This commit is contained in:
2025-01-10 10:34:11 +01:00
parent 4584185a42
commit 85ea31f7cd
7 changed files with 165 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
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, "prevent_foes_exit")]
public class PreventFoesExit : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
move.User.Volatile.Add(new PreventFoesExitEffect());
}
}