import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Clefairy" }, illustrator: "kirisAki", category: "Pokemon", hp: 60, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Psychic"], name: { en: "Slap" }, damage: "20" }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It is said that happiness will come to those who see a gathering of Clefairy dancing under a full moon.", } } export default card