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

46 lines
744 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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "轟擂金剛猩VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 330,
types: ["Grass"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "抓"
},
damage: 50,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "極巨連打"
},
effect: {
'zh-tw': "若希望選擇最多3張這隻寶可夢身上附加的【草】能量卡將其丟棄。這個情況下增加丟棄的張數×50點傷害。"
},
damage: "130+",
cost: ["Grass", "Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card