import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Gligar", fr: "Scorplane" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 207, ], hp: 50, types: [ "Fighting", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Free Flight", fr: "Vol gratuit" }, effect: { en: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0.", fr: "Si Scorplane ne possède pas d'Énergie, son Coût de retraite est de 0." }, }, ], attacks: [ { cost: [ "Fighting", ], name: { en: "Toxic Grip", fr: "Pince empoisonnée" }, effect: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné." }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card