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: "xy3-14", localId: 14, // Card informations name: { en: "Blaziken", fr: "Braségali", }, hp: 140, type: [ Type.FIRE, ], dexId: 257, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/14/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/14/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/14/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/14/high", }, }, evolveFrom: { en: "Combusken", fr: "Galifeu", }, tags: [ Tag.STAGE2, ], illustrator: "PLANETA", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Clutch", fr: "Serre", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 50 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Burning Shot", fr: "Tir Brûlant", }, text: { en: "Discard 2 Energy attached to this Pokémon. This attack does 150 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Défaussez 2 Énergies attachées à ce Pokémon. Cette attaque inflige 150 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card