import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Misdreavus", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 200, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Night Eyes", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Psychic", "Psychic", "Psychic", ], name: { en: "Perish Song", }, effect: { en: "If the Defending Pokémon is Asleep, and was attacked with Night Eyes during your last turn, it is Knocked Out.", }, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card