mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-10 15:19:55 +00:00
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Misdreavus",
|
|
fr: "Feuforêve",
|
|
es: "Misdreavus",
|
|
it: "Misdreavus",
|
|
de: "Traunfugil",
|
|
'pt-br': "Misdreavus",
|
|
ko: "무우마"
|
|
},
|
|
|
|
illustrator: "Sumiyoshi Kizuki",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Psychic"],
|
|
|
|
description: {
|
|
en: "This Pokémon startles people in the middle of the night. It gathers fear as its energy.",
|
|
fr: "Il fait peur aux gens en pleine nuit et se nourrit de leur frayeur.",
|
|
es: "Sorprende a la gente en mitad de la noche\ny acumula su miedo como energía.",
|
|
it: "Un Pokémon che terrorizza la gente nel cuore della\nnotte. Assorbe la paura per usarla come energia.",
|
|
de: "Ein Pokémon, das Menschen mitten in der Nacht\nerschreckt. Es sammelt die Angst als seine Energie.",
|
|
'pt-br': "Este Pokémon assusta pessoas no meio da noite.\nAcumula o medo para usar como energia.",
|
|
ko: "한밤중에 사람을 놀라게 하고\n무서워하는 마음을 모아 자신의\n에너지로 만드는 포켓몬이다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Mumble",
|
|
fr: "Murmure",
|
|
es: "Farfullar",
|
|
it: "Borbottio",
|
|
de: "Grummeln",
|
|
'pt-br': "Resmungo",
|
|
ko: "중얼거리기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Psychic"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["palkia"]
|
|
}
|
|
|
|
export default card
|