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

55
data-asia/SV/SV4M/036.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ナカヌチャン",
'zh-tw': "巧鍛匠",
th: "นาคานุจัง"
},
illustrator: "Souichirou Gunjima",
rarity: "Common",
category: "Pokemon",
dexId: [958],
hp: 80,
types: ["Psychic"],
description: {
ja: "金属の ガラクタ山が 棲み処。 ハンマーの 強度を 試すため 仲間同士で 激しく 打ち合う。",
'zh-tw': "棲息在堆滿破銅爛鐵的地方。為了測試錘子的強度,會和夥伴們激烈地敲打彼此。",
th: "อาศัยอยู่ที่ภูเขาเศษโลหะ จะตีกันเองในหมู่พวกพ้องเพื่อทดสอบความแข็งแกร่งของค้อน"
},
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
ja: "ごうきんスイング",
'zh-tw': "合金橫掃",
th: "กวัดแกว่งอัลลอย"
},
damage: "20+",
effect: {
ja: "このポケモンにエネルギーがついているなら、40ダメージ追加。",
'zh-tw': "若這隻寶可夢身上附有【鋼】能量卡則增加40點傷害。",
th: "ถ้าโปเกมอนนี้มีพลังงาน[โลหะ]ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 40"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card