1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

71 lines
2.3 KiB
TypeScript
Raw 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "デカヌチャン",
'zh-tw': "巨鍛匠",
th: "เดคานุจัง"
},
illustrator: "KEIICHIRO ITO",
rarity: "Uncommon",
category: "Pokemon",
dexId: [959],
hp: 130,
types: ["Psychic"],
description: {
ja: "100キロを 超える ハンマーを 軽々 振りまわして 欲しいものを 奪い取り 棲み処へと 持ち帰る。",
'zh-tw': "會輕鬆地揮舞著超過100公斤的錘子來奪取想要的東西,然後帶回自己的住處。",
th: "เหวี่ยงค้อนที่มีน้ำหนักเกิน 100 กิโลกรัมได้อย่างสบาย ๆ แย่งชิงสิ่งที่ต้องการและนำกลับไปยังที่อยู่อาศัยของตน"
},
stage: "Stage2",
attacks: [{
cost: ["Psychic"],
name: {
ja: "はかいのいちげき",
'zh-tw': "破壞一擊",
th: "จู่โจมครั้งเดียวแห่งการทำลายล้าง"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Psychic"],
name: {
ja: "ごうきんハンマー",
'zh-tw': "合金之錘",
th: "ค้อนอัลลอย"
},
damage: "60+",
effect: {
ja: "このポケモンにエネルギーがついているなら、120ダメージ追加。",
'zh-tw': "若這隻寶可夢身上附有【鋼】能量卡則增加120點傷害。",
th: "ถ้าโปเกมอนนี้มีพลังงาน[โลหะ]ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card