1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/091.ts

48 lines
701 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Musharna"
},
illustrator: "MAHOU",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
evolveFrom: {
en: "Munna"
},
description: {
en: "When dark mists emanate from its body, don't\nget too near. If you do, your nightmares will\nbecome reality."
},
stage: "Stage1",
attacks: [{
name: {
en: "Dream Dance"
},
damage: 60,
cost: ["Psychic", "Colorless"],
effect: {
en: "Both Active Pokémon are now Asleep."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 3
}
export default card