1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

72 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [518],
set: Set,
name: {
en: "Musharna",
fr: "Mushana",
es: "Musharna",
it: "Musharna",
pt: "Musharna",
de: "Somnivora"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
evolveFrom: {
en: "Munna",
fr: "Munna",
es: "Munna",
it: "Munna",
pt: "Munna",
de: "Somniam"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Tika Matsuno",
description: {
en: "It drowses and dreams all the time. It's best to leave it be if it's just woken up, as it's a terrible grump when freshly roused from sleep."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Sleep Inducer"
},
effect: {
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Asleep."
}
}, {
cost: ["Psychic", "Colorless"],
name: {
en: "Psychic"
},
damage: "30+",
effect: {
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card