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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/15/high.png", }, }, evolveFrom: { en: "Combusken", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "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