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

51 lines
851 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "佇立在大草原上,每天眺望著日升日落。擅長強而有力的踢技。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "百萬噸重踢"
},
damage: 80,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "力量壓制"
},
effect: {
'zh-tw': "若身上附有的能量比使用這個招式所需的能量多1個則增加60點傷害。"
},
damage: "120+",
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card