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

46 lines
763 B
TypeScript
Raw Permalink 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "烈空坐V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 210,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "龍之波動"
},
effect: {
'zh-tw': "將自己的牌庫上方2張卡丟棄。"
},
damage: 40,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "螺旋爆破"
},
effect: {
'zh-tw': "若希望將這隻寶可夢身上附加的【火】或者【雷】任一屬性的最多2張基本能量卡丟棄增加其張數×80點傷害。"
},
damage: "20+",
cost: ["Fire", "Lightning"]
}],
retreat: 2,
regulationMark: "E"
}
export default card