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: "swsh1-36", localId: 36, // Card informations name: { en: "Cinderace", fr: "Pyrobut", }, hp: 170, type: [ Type.FIRE, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/36/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/36/low", } }, evolveFrom: { en: "Raboot", fr: "Lapyro", }, tags: [ Tag.STAGE2, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.FIRE ], 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 Feu de votre pile de défausse à ce Pokémon.", }, damage: 40 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Bright Flame", fr: "Flamme Éclatante", }, text: { en: "Flip a coin. If tails, discard 2 Energy from this Pokémon.", fr: "Lancez une pièce. Si c’est pile, défaussez 2 Énergies de ce Pokémon.", }, damage: 160 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card