13 lines
442 B
C#
13 lines
442 B
C#
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "follow_me")]
|
|
public class FollowMe : Script, IScriptOnSecondaryEffect
|
|
{
|
|
public void OnSecondaryEffect(IExecutingMove move, IBattlePokemon target, byte hit)
|
|
{
|
|
move.User.BattleSide.VolatileScripts.StackOrAdd(ScriptUtils.ResolveName<FollowMeEffect>(),
|
|
() => new FollowMeEffect(move.User));
|
|
}
|
|
} |