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: "xy3-70", localId: 70, // Card informations name: { en: "Clefairy", fr: "Mélofée", }, hp: 60, type: [ Type.FAIRY, ], dexId: 35, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/70/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/70/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/70/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/70/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "match", attacks: [{ cost: [ Type.FAIRY ], name: { en: "Moonblast", fr: "Pouvoir Lunaire", }, text: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 10 (before applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 10 (avant application de la Faiblesse et de la Résistance).", }, damage: 10 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card