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

69
data-asia/SV/SV2D/035.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "デカヌチャンex",
'zh-tw': "巨鍛匠ex",
th: "เดคานุจังex",
id: "Tinkaton ex"
},
illustrator: "takuyoa",
rarity: "Double rare",
category: "Pokemon",
hp: 300,
types: ["Psychic"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ビッグハンマー",
'zh-tw': "大錘",
th: "บิ๊กแฮมเมอร์",
id: "Big Hammer"
},
damage: "30×",
effect: {
ja: "自分の手札の枚数×30ダメージ。",
'zh-tw': "造成自己的手牌的張數×30點傷害。",
th: "แดเมจจะเท่ากับจำนวนการ์ดบนมือฝ่ายเรา x30",
id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lembar Kartu Pegangan sendiri."
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "ふんさいプレス",
'zh-tw': "粉碎壓制",
th: "บดอัด",
id: "Tekanan Demolisi"
},
damage: 140,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card