13 lines
380 B
C#
13 lines
380 B
C#
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "requires_recharge")]
|
|
public class RequiresRecharge : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
move.User.Volatile.Add(new RequiresRechargeEffect(move.User));
|
|
}
|
|
} |