namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Long Reach is an ability that allows the Pokémon to use contact moves without making contact.
///
/// Bulbapedia - Long Reach
///
[Script(ScriptCategory.Ability, "long_reach")]
public class LongReach : Script, IScriptModifyIsContact
{
///
public void ModifyIsContact(IExecutingMove executingMove, IPokemon target, byte hitIndex, ref bool isContact)
{
isContact = false;
}
}