2025-05-05 11:36:59 +02:00

15 lines
453 B
C#

using PkmnLib.Plugin.Gen7.Scripts.Battle;
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "snatch")]
public class Snatch : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
move.Battle.Volatile.Add(new SnatchEffect());
var snatchEffect = move.Battle.Volatile.Get<SnatchEffect>();
snatchEffect?.AddSnatcher(target);
}
}