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

45 lines
710 B
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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "岩石之禮"
},
effect: {
'zh-tw': "從自己的手牌選擇1張【鬥】能量卡附於自己的寶可夢身上。然後將那隻寶可夢恢復「120」HP。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "極巨岩石"
},
damage: 200,
cost: ["Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card