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

50 lines
790 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "耿鬼VMAX"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 320,
types: ["Darkness"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "恐慌恐懼"
},
effect: {
'zh-tw': "造成對手的場上的「寶可夢【V】・【GX】」的數量×60點傷害。"
},
damage: "60×",
cost: ["Darkness", "Darkness"]
}, {
name: {
'zh-tw': "超極巨大口吞噬"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 250,
cost: ["Darkness", "Darkness", "Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card