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: "xy5-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/xy/xy5/27/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/27/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/27/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/27/high", }, }, evolveFrom: { en: "Torchic", fr: "Poussifeu", }, tags: [ Tag.STAGE1, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.FIRE ], name: { en: "Quick Attack", fr: "Vive-Attaque", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Spiral Kick", fr: "Coup'd Pied en Spirale", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card