import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Clefairy", fr: "Melofée", de: "Piepi" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 35, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", fr: "Écras'face", de: "Pound" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Lullaby", fr: "Comptine", de: "Lullaby" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", de: "The Defending Pokémon is now Asleep." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card