1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

59
data-asia/SV/SV2D/033.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "カヌチャン",
'zh-tw': "小鍛匠",
th: "คานุจัง",
id: "Tinkatink"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [957],
hp: 70,
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: ["Psychic"],
name: {
ja: "くだく",
'zh-tw': "碎",
th: "ทุบแตก",
id: "Melumatkan"
},
damage: 10,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card