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

55 lines
1.4 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: "Oswaldo KATO",
rarity: "Common",
category: "Pokemon",
dexId: [957],
hp: 70,
types: ["Psychic"],
description: {
ja: "鉄くずを 叩いて ハンマーを 作る。 納得がいく ものが できるまで 何度も 作り直す。",
'zh-tw': "敲打鐵屑來製作錘子。直到做出自己滿意的作品前,會一次又一次地重做。",
th: "นำเศษเหล็กไปตีเป็นค้อน จะสร้างขึ้นใหม่เรื่อย ๆ จนกว่าจะได้ผลลัพธ์ที่พอใจ"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "そこぢから",
'zh-tw': "潛力",
th: "พลังแฝง"
},
damage: 40,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card