import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Gligar", fr: "Scorplane", de: "Skorgla" }, 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", de: "Free Flight" }, 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.", de: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0." }, }, ], attacks: [ { cost: [ "Fighting", ], name: { en: "Toxic Grip", fr: "Pince empoisonnée", de: "Toxic Grip" }, effect: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné.", de: "The Defending Pokémon is now Poisoned." }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card