1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

64
data-asia/SV/SV1a/034.ts Normal file
View File

@ -0,0 +1,64 @@
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