import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Gligar", fr: "Scorplane", es: "Gligar", it: "Gligar", pt: "Gligar", de: "Skorgla" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 207, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Tail Smack", fr: "Coup de Queue", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Wicked Jab", fr: "Piqûre Infernale", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 1, } export default card