1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

65 lines
1.8 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ドテッコツ",
'zh-tw': "鐵骨土人",
th: "โดเท็คคทซึ"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Aya Kusube",
dexId: [533],
hp: 100,
types: ["Fighting"],
description: {
ja: "鍛え上げられた 筋肉の 体は プロレスラーが 束になって 攻撃しても びくともしない。",
'zh-tw': "身體的肌肉經過完美鍛鍊。 即使是職業摔角手一擁而上 進行攻擊,也能毫髮無傷。",
th: "ร่างกายมีกล้ามเนื้อที่เพาะบ่มเป็นอย่างดี แม้จะมีนักมวยปล้ำจับกลุ่มกันเข้ามาโจมตีก็ไม่สะดุ้งสะเทือน"
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "げんこつ",
'zh-tw': "拳骨",
th: "กำปั้น"
},
damage: 20
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ばかぢから",
'zh-tw': "蠻力",
th: "พลังสุดขีด"
},
damage: "50+",
effect: {
ja: "のぞむなら、30ダメージ追加。その場合、このポケモンにも30ダメージ。",
'zh-tw': "若希望增加30點傷害。這個情況下這隻寶可夢也受到30點傷害。",
th: "หากต้องการ การโจมตีนี้จะเพิ่มแดเมจอีก 30 เมื่อทำเช่นนั้นแล้ว โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card