import { Card } from '../../../interfaces' import Set from '../Plasma Blast' const card: Card = { name: { en: "Musharna", fr: "Mushana", es: "Musharna", it: "Musharna", pt: "Musharna", de: "Somnivora" }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 518, ], hp: 100, types: [ "Psychic", ], evolveFrom: { en: "Munna", fr: "Munna", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Precognitive Dream", fr: "Rêve Prémonitoire", }, effect: { en: "Draw 3 cards. This Pokémon is now Asleep.", fr: "Piochez 3 cartes. Ce Pokémon est maintenant Endormi.", }, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Psybeam", fr: "Rafale Psy", }, effect: { en: "The Defending Pokémon is now Confused.", fr: "Le Pokémon Défenseur est maintenant Confus.", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 3, } export default card