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: "bw1-19", localId: 19, // Card informations name: { en: "Emboar", fr: "Roitiflam", }, hp: 150, type: [ Type.FIRE, ], dexId: 500, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/19/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/19/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/19/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/19/high", }, }, evolveFrom: { en: "Pignite", fr: "Grotichon", }, tags: [ Tag.STAGE2, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Heat Crash", fr: "Tacle Feu", }, damage: 50 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flare Blitz", fr: "Boutefeu", }, text: { en: "Discard all Fire Energy attached to this Pokémon.", fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card