PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/ChipAway.cs

13 lines
336 B
C#
Raw Normal View History

2025-01-27 11:18:48 +00:00
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "chip_away")]
public class ChipAway : Script
{
/// <inheritdoc />
public override void BypassDefensiveStatBoosts(IExecutingMove move, IPokemon target, byte hit, ref bool bypass)
{
bypass = true;
}
// TODO: bypass evasion stat.
}