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:
68
data-asia/SV/SV2D/032.ts
Normal file
68
data-asia/SV/SV2D/032.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "カヌチャン",
|
||||
'zh-tw': "小鍛匠",
|
||||
th: "คานุจัง",
|
||||
id: "Tinkatink"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
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: "Memungut Rongsok Besi"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分のトラッシュからグッズを1枚選び、相手に見せて、手札に加える。",
|
||||
'zh-tw': "從自己的棄牌區選擇1張物品卡,在給對手看過後加入手牌。",
|
||||
th: "เลือกการ์ดไอเท็ม 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ",
|
||||
id: "Pilih 1 lembar Item dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ようせいのかぜ",
|
||||
'zh-tw': "妖精之風",
|
||||
th: "สายลมแห่งภูตพราย",
|
||||
id: "Angin Peri"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user