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

51 lines
984 B
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 "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵骨土人",
th: "โดเท็คคทซึ"
},
illustrator: "Uta",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
'zh-tw': "能夠靈巧地操縱鋼骨。雖然對拆除得心應手,但卻不太擅長組裝。",
th: "ใช้โครงเหล็กได้อย่างช่ำชอง ถนัดในการรื้อถอนแต่ไม่เก่งในเรื่องก่อสร้าง"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "拍擊",
th: "ปัด"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "頭突",
th: "ตบหนัก"
},
damage: 60,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card