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: "bw7-20", localId: 20, // Card informations name: { en: "Charizard", fr: "Dracaufeu", }, hp: 160, type: [ Type.FIRE, ], dexId: 6, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/20/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/20/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/20/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/20/high", }, }, evolveFrom: { en: "Charmeleon", fr: "Reptincel", }, tags: [ Tag.STAGE2, ], illustrator: "hatachu", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Split Bomb", fr: "Bombe Fendante", }, text: { en: "This attack does 40 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 40 dégâts à 2 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Scorching Fire", fr: "Feu Infernal", }, text: { en: "Discard a Fire Energy attached to this Pokémon.", fr: "Défaussez une Énergie Fire attachée à ce Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card