1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00

75 lines
1016 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Plasma Blast'
const card: Card = {
name: {
en: "Musharna",
fr: "Mushana",
},
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