1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

71 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
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