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-12", localId: 12, // Card informations name: { en: "M Charizard-EX", fr: "M-Dracaufeu-EX", }, hp: 220, type: [ Type.FIRE, ], dexId: 6, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/12/low", fr: "https://assets.tcgdex.net/fr/xy/g1/12/low", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/12/high", fr: "https://assets.tcgdex.net/fr/xy/g1/12/high", }, }, evolveFrom: { en: "Charizard-EX", fr: "Dracaufeu-EX", }, tags: [ Tag.MEGA, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Heat Typhoon", fr: "Typhon Ardent", }, text: { en: "Flip a coin for each Fire Energy attached to this Pokémon. This attack does 50 more damage for each heads.", fr: "Lancez une pièce pour chaque Énergie Fire attachée à ce Pokémon. Cette attaque inflige 50 dégâts supplémentaires pour chaque côté face.", }, damage: 100 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 3, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card