import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Gligar", }, illustrator: "Hironobu Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 207, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Poison Sting", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card