12 lines
338 B
C#
12 lines
338 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
[Script(ScriptCategory.Ability, "bulletproof")]
|
|
public class Bulletproof : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void FailIncomingMove(IExecutingMove move, IPokemon target, ref bool fail)
|
|
{
|
|
if (move.UseMove.HasFlag("ballistics"))
|
|
fail = true;
|
|
}
|
|
} |