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