import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Clefairy", }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 35, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Doubleslap", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Squaredance", }, effect: { en: "Flip a number of coins equal to the total number of Pokémon in play. For each heads, you may search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card