1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

68 lines
2.0 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "青銅鐘",
th: "โดทาคุน",
ja: "ドータクン"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 110,
types: ["Metal"],
description: {
'zh-tw': "牠身上的紋路讓許多學者認為牠 原本並不存在於伽勒爾。",
th: "มีนักวิทยาศาสตร์หลายคนคิดว่าดูจากลวดลายตามตัวแล้วโปเกมอนนี้ไม่ได้อยู่ในกาลาร์มาก่อน",
ja: "体の模様 から 本来 ガラルには いない ポケモンと 考える 学者も 多い。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "金屬轉移",
th: "เมทัลทรานสเฟอร์",
ja: "メタルトランス"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上寶可夢身上附加的【鋼】能量改附於自己的其他寶可夢身上。",
th: "ใช้กี่ครั้งก็ได้ในเทิร์นฝ่ายเรา เลือกพลังงาน [โลหะ] ที่ติดกับโปเกมอนบนกระดานฝ่ายเรา 1 ลูก ไปติดกับโปเกมอนตัวอื่นของฝ่ายเรา",
ja: "自分の番に何回でも使える。自分の場のポケモンについているエネルギーを1個選び、自分の別のポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "意念頭錘",
th: "ท่าโขกหัวพลังจิต",
ja: "しねんのずつき"
},
damage: 70,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3,
regulationMark: "E",
dexId: [437]
}
export default card