11 lines
344 B
C#
11 lines
344 B
C#
|
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "helping_hand")]
|
||
|
public class HelpingHand : Script
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit) =>
|
||
|
target.Volatile.Add(new HelpingHandEffect());
|
||
|
}
|