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: "xy12-63", localId: 63, // Card informations name: { en: "Clefairy", fr: "Mélofée", }, hp: 40, type: [ Type.FAIRY, ], dexId: 35, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/63/low", fr: "https://assets.tcgdex.net/fr/xy/xy12/63/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/63/high", fr: "https://assets.tcgdex.net/fr/xy/xy12/63/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sing", fr: "Berceuse", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Asleep.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Endormi.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Metronome", fr: "Métronome", }, text: { en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.", fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.", }, }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card