namespace PkmnLib.Plugin.Gen7.Scripts.Abilities; /// /// Telepathy is an ability that prevents damage from allies' moves. /// /// Bulbapedia - Telepathy /// [Script(ScriptCategory.Ability, "telepathy")] public class Telepathy : Script { /// public override void IsInvulnerableToMove(IExecutingMove move, IPokemon target, ref bool invulnerable) { if (move.User.BattleData?.BattleSide == target.BattleData?.BattleSide) invulnerable = true; } }