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: "g1-11", localId: 11, // Card informations name: { en: "Charizard-EX", fr: "Dracaufeu-EX", }, hp: 180, type: [ Type.FIRE, ], dexId: 6, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/11/low.png", fr: "https://assets.tcgdex.net/fr/xy/g1/11/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/11/high.png", fr: "https://assets.tcgdex.net/fr/xy/g1/11/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 38, name: "Eske Yoshinob" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Flame Cloak", fr: "Manteau de Feu", }, text: { en: "Attach a Fire Energy card from your discard pile to this Pokémon.", fr: "Attachez une carte Énergie Fire de votre pile de défausse à ce Pokémon.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Burning Breath", fr: "Souffle de Feu", }, text: { en: "Flip 2 coins. This attack does 40 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card