1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

68
data-asia/SV/SV1a/040.ts Normal file
View File

@ -0,0 +1,68 @@
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