mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
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 |