import { Card } from '../../../interfaces' import Set from '../Call of Legends' const card: Card = { name: { en: "Clefairy", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 35, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Minimize", }, effect: { en: "During your opponent's next turn, any damage done to Clefairy by attacks is reduced by 20 (after applying Weakness and Resistance).", }, }, { cost: [ "Colorless", ], name: { en: "Slap", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card