import { Card } from '../../../interfaces' import Set from '../Wizards Black Star Promos' const card: Card = { name: { en: "Misdreavus", }, illustrator: "Shin-ichi Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 200, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Pain Split", }, effect: { en: "Put 1 damage counter on the Defending Pokémon for each damage counter on Misdreavus.", }, }, { cost: [ "Psychic", "Psychic", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card