import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Clefairy", fr: "Mélofée" }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Shining Fingers", fr: "Doigts Brillants" }, effect: { en: "Your opponent’s Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi." }, }, { cost: [ "Psychic", ], name: { en: "Magical Shot", fr: "Coup Magique" }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, hp: 60, types: ["Psychic"] } export default card