import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xy3-49", localId: 49, // Card informations name: { en: "Hitmontop", fr: "Kapoera", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 237, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/49/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/49/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/49/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/49/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Quick Draw", fr: "Pioche Rapide", }, text: { en: "Draw a card.", fr: "Piochez une carte.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Helicoptero", fr: "Helicoptero", }, text: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec l'un de vos Pokémon de Banc.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card