1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

70 lines
1.7 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ナカヌチャン",
'zh-tw': "巧鍛匠",
id: "Tinkatuff"
},
illustrator: "Yuu Nishida",
category: "Pokemon",
dexId: [958],
hp: 90,
types: ["Psychic"],
description: {
ja: "大きくて 頑丈な ハンマーを 作るために キリキザンの 群れを 襲って 金属を 集める。",
'zh-tw': "為了製作又大又堅固的錘子,會去襲擊劈斬司令 的群體,藉以收集金屬。",
id: "Untuk membuat palu yang besar dan kuat, Tinkatuff menyerang kelompok Bisharp dan mengumpulkan logam dari mereka."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "じゃれつく",
'zh-tw': "嬉鬧",
id: "Main Kasar"
},
damage: "30+",
effect: {
ja: "コインを1回投げオモテなら、30ダメージ追加。",
'zh-tw': "擲1次硬幣若為正面則增加30點傷害。",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 30."
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "ふんさいプレス",
'zh-tw': "粉碎壓制",
id: "Tekanan Demolisi"
},
damage: 60,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card