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

34 lines
587 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 "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "烈空坐VMAX"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 320,
types: ["Dragon"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "極巨爆破"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的【火】或者【雷】任一屬性的任意數量的基本能量卡丟棄增加其張數×80點傷害。"
},
damage: "20+",
cost: ["Fire", "Lightning"]
}],
retreat: 2,
regulationMark: "E"
}
export default card