mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "カヌチャン",
|
||
'zh-tw': "小鍛匠",
|
||
th: "คานุจัง",
|
||
id: "Tinkatink"
|
||
},
|
||
|
||
illustrator: "Mizue",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [957],
|
||
hp: 60,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
ja: "手作りの ハンマーを 振りまわして 身を 守るが 金属を 食べる ポケモンには よく 奪われる。",
|
||
'zh-tw': "雖然會揮舞著手工打造的錘子來保護自己,但卻常被 以金屬為食的寶可夢搶走。",
|
||
th: "เหวี่ยงค้อนทำมือเพื่อป้องกันตัว แต่มักถูกโปเกมอนที่กินโลหะแย่งไป",
|
||
id: "Tinkatink mengayunkan palu buatannya untuk melindungi dirinya, namun palu tersebut sering direbut oleh Pokémon pemakan logam."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "もってくる",
|
||
'zh-tw': "呼喚",
|
||
th: "รวบรวม",
|
||
id: "Mengumpulkan"
|
||
},
|
||
|
||
effect: {
|
||
ja: "自分の山札を1枚引く。",
|
||
'zh-tw': "從自己的牌庫抽出1張卡。",
|
||
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา",
|
||
id: "Ambil 1 kartu dari atas Deck sendiri."
|
||
}
|
||
}, {
|
||
cost: ["Psychic", "Colorless"],
|
||
|
||
name: {
|
||
ja: "どつく",
|
||
'zh-tw': "推擊",
|
||
th: "ต่อยตี",
|
||
id: "Menohok"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |