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: "ex13-20", localId: 20, // Card informations name: { en: "Blaziken", }, hp: 100, type: [ Type.FIRE, ], dexId: 257, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/20/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/20/high.png", }, }, evolveFrom: { en: "Combusken", }, tags: [ Tag.STAGE2, ], illustrator: { id: 57, name: "Hiromichi Sugiyama" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Combustion", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Blaze Kick", }, text: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage. If tails, the Defending Pokémon is now Burned.", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card