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

40 lines
688 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "長毛巨魔VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 330,
types: ["Darkness"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "超極巨鑽心刺骨"
},
effect: {
'zh-tw': "與使用這個招式所需的能量相比增加身上多附的【惡】能量的數量×50點傷害。可增加的傷害數值為最多2個【惡】能量。"
},
damage: "170+",
cost: ["Darkness", "Darkness", "Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card