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

61 lines
1.7 KiB
TypeScript
Raw 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 "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁",
th: "อิชิเฮนจิน"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "每年會有一天,牠們會在特定的時間突然出現,聚集在一起排成一個圈。",
th: "ในวันและเวลาที่กำหนดไว้เฉพาะในปีละหนึ่งครั้ง จะปรากฏตัวออกมาจากที่ไหนสักแห่งและรวมตัวเรียงกันเป็นวงกลม"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "大地鼓動",
th: "เสียงหัวใจแห่งธรณี"
},
effect: {
'zh-tw': "若場上有競技場卡則增加30點傷害。",
th: "ถ้ามีการ์ดสเตเดียมอยู่บนกระดาน การโจมตีนี้จะเพิ่มแดเมจอีก 30"
},
damage: "30+",
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "兆幅鐵錘",
th: "กิก้าแฮมเมอร์"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「兆幅鐵錘」。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [กิก้าแฮมเมอร์] ไม่ได้"
},
damage: 120,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card