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