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: "sm8-41", localId: 41, // Card informations name: { en: "Quilava", fr: "Feurisson", }, hp: 90, type: [ Type.FIRE, ], dexId: 156, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/41/low", fr: "https://assets.tcgdex.net/fr/sm/sm8/41/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/41/high", fr: "https://assets.tcgdex.net/fr/sm/sm8/41/high", }, }, evolveFrom: { en: "Cyndaquil", fr: "Héricendre", }, tags: [ Tag.STAGE1, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Hammer In", fr: "Enfoncement", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.FIRE ], name: { en: "Super Singe", fr: "Super Roussi", }, text: { en: "Your opponent's Active Pokémon is now Burned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card