1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 12:49:53 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

110 lines
3.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Sword & Shield'
const card: Card = {
name: {
en: "Musharna",
fr: "Mushana",
es: "Musharna",
it: "Musharna",
pt: "Musharna",
de: "Somnivora"
},
illustrator: "MAHOU",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Munna",
fr: "Munna",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sleepy Pulse",
fr: "Pouls Léthargique",
es: "Pulso Soporífero",
it: "Dormipulsar",
pt: "Pulso Dorminhoco",
de: "Schläfriger Puls"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep. During Pokémon Checkup, your opponent flips 2 coins instead of 1. If either of them is tails, that Pokémon is still Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi. Pendant le Contrôle Pokémon, votre adversaire lance 2 pièces au lieu dune. Sil obtient au moins un côté pile, ce Pokémon-là reste Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido. Durante el Chequeo Pokémon, tu rival lanza 2 monedas en vez de 1. Si sale cruz en alguna de ellas, ese Pokémon está todavía Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato. Durante il controllo Pokémon, il tuo avversario lancia due volte una moneta invece di una. Se esce almeno una volta croce, quel Pokémon resta addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido. Durante o Checape Pokémon, seu oponente joga 2 moedas ao invés de 1. Se qualquer uma delas sair coroa, aquele Pokémon permanecerá Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt. Beim Pokémon-Check wirft dein Gegner 2 Münzen anstelle von 1. Wenn eine oder beide Münzen Zahl zeigen, schläft jenes Pokémon weiter."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Super Hypnoblast",
fr: "Super Hypno-Rafale",
es: "Superhipnorrayo",
it: "Super Ipnobomba",
pt: "Superborrifada Hipnótica",
de: "Super Hypnoschuss"
},
effect: {
en: "If your opponents Active Pokémon is Asleep, this attack does 120 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est Endormi, cette attaque inflige 120 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival está Dormido, este ataque hace 120 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è addormentato, questo attacco infligge 120 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente estiver Adormecido, este ataque causará 120 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners schläft, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It drowses and dreams all the time. Its best to leave it be if its just woken up, as its a terrible grump when freshly roused from sleep."
}
}
export default card