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: "ex1-15", localId: 15, // Card informations name: { en: "Blaziken", }, hp: 110, type: [ Type.FIRE, ], dexId: 257, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/15/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/15/high", }, }, evolveFrom: { en: "Combusken", }, tags: [ Tag.STAGE2, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Clutch", }, text: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flamethrower", }, text: { en: "Discard a Fire Energy card attached to Blaziken.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card