10 lines
266 B
C#
10 lines
266 B
C#
|
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "endure")]
|
||
|
public class Endure : ProtectionScript
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
protected override Script GetEffectScript() => new EndureEffect();
|
||
|
}
|