import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex10-57", localId: 57, // Card informations name: { en: "Gligar", }, hp: 50, type: [ Type.FIGHTING, ], dexId: 207, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/57/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/57/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, abilities: [{ id: 132, type: AbilityType.POKEBODY, name: { en: "Free Flight", }, text: { en: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0.", } }], attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Toxic Grip", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card