import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Gligar", fr: "Scorplane", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 207, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Stun Poison", fr: "Poison Neural", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed and Poisoned.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé et Empoisonné.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card