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: "sm7-27", localId: 27, // Card informations name: { en: "Combusken", fr: "Galifeu", }, hp: 80, type: [ Type.FIRE, ], dexId: 256, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/27/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/27/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/27/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/27/high.png", }, }, evolveFrom: { en: "Torchic", fr: "Poussifeu", }, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "Mizue" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Kick", fr: "Double Pied", }, text: { en: "Flip 2 coins. This attack does 30 damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Flamethrower", fr: "Lance-Flammes", }, text: { en: "Discard an Energy from this Pokémon.", fr: "Défaussez une Énergie de ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card