13 lines
515 B
C#
13 lines
515 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "darkest_lariat")]
|
|
public class DarkestLariat : Script, IScriptBypassDefensiveStatBoosts, IScriptBypassEvasionStatBoosts
|
|
{
|
|
/// <inheritdoc />
|
|
public void BypassDefensiveStatBoosts(IExecutingMove move, IPokemon target, byte hit, ref bool bypass) =>
|
|
bypass = true;
|
|
|
|
/// <inheritdoc />
|
|
public void BypassEvasionStatBoosts(IExecutingMove move, IPokemon target, byte hitIndex, ref bool bypass) =>
|
|
bypass = true;
|
|
} |