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: "sm10-133", localId: 133, // Card informations name: { en: "Clefable", fr: "Mélodelfe", }, hp: 110, type: [ Type.FAIRY, ], dexId: 36, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/133/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/133/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/133/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/133/high", }, }, evolveFrom: { en: "Clefairy", fr: "Mélofée", }, tags: [ Tag.STAGE1, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Moon-Watching Dance", fr: "Danse au Clair de Lune", }, text: { en: "This attack does 30 more damage for each of your Pokémon that has any Fairy Energy attached to it.", fr: "Cette attaque inflige 30 dégâts supplémentaires pour chacun de vos Pokémon auquel de l’Énergie Fairy est attachée.", }, damage: 10 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card