mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
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 |