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: "pop1-1", localId: 1, // Card informations name: { en: "Blaziken", }, hp: 110, type: [ Type.FIRE, ], dexId: 257, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/1/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/1/high", }, }, evolveFrom: { en: "Combusken", }, tags: [ Tag.STAGE2, ], illustrator: "Katsura Tabata", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Fire Punch", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Kick", }, text: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card