1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

64 lines
1.7 KiB
TypeScript
Raw Permalink 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ムウマ",
'zh-tw': "夢妖",
th: "มูมา",
id: "Misdreavus"
},
illustrator: "Megumi Higuchi",
rarity: "Common",
category: "Pokemon",
dexId: [200],
hp: 70,
types: ["Psychic"],
description: {
ja: "真夜中 人を 驚かせては 怖がる心を 集めて 自分の エネルギーに している ポケモン。",
'zh-tw': "會在半夜嚇唬人類,然後把收集到的恐懼之心 轉化成自身能量的寶可夢。",
th: "โปเกมอนที่หลอกให้ผู้คนตกใจในยามค่ำคืนเพื่อสะสมจิตใจที่หวาดกลัวแล้วนำมาเป็นพลังงานของตัวเอง",
id: "Misdreavus adalah Pokémon yang mengejutkan manusia saat tengah malam untuk mengumpulkan ketakutan mereka dan menjadikannya energi untuk dirinya sendiri."
},
stage: "Basic",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
ja: "さいみんはどう",
'zh-tw': "催眠波動",
th: "คลื่นสะกดจิต",
id: "Aura Hipnotis"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card