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

47 lines
768 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 "../SC2b"
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張卡丟棄若那張卡為能量卡則增加90點傷害。然後將丟棄的能量卡附於這隻寶可夢身上。"
},
damage: "40+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨岩懸石壁"
},
damage: 240,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card