import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Misdreavus", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 200, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Hypnoblast", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Gift of Spite", }, effect: { en: "Count the number of your Pokémon in play with damage counters on them. Put that many damage counters on the Defending Pokémon.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card