import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Clefairy", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 35, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Shining Fingers", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", ], name: { en: "Slap", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card