namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Shield Dust is an ability that blocks the additional effects of attacks taken.
///
/// Bulbapedia - Shield Dust
///
[Script(ScriptCategory.Ability, "shield_dust")]
public class ShieldDust : Script
{
///
public override void PreventIncomingSecondaryEffect(IExecutingMove move, IPokemon target, byte hit,
ref bool prevent)
{
prevent = true;
}
}