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

54 lines
1.3 KiB
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 "../SPZ"
const card: Card = {
set: Set,
name: {
'zh-tw': "捷拉奧拉VSTAR",
ja: "ゼラオラVSTAR"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 270,
types: ["Lightning"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "粉碎律動",
ja: "クラッシュビート"
},
effect: {
'zh-tw': "若希望,將場上的競技場卡丟棄。",
ja: "のぞむなら、場に出ているスタジアムをトラッシュする。"
},
damage: 190,
cost: ["Lightning", "Lightning", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]雷霆星星",
ja: "いかずちスター"
},
effect: {
'zh-tw': "選擇4次對手的寶可夢對所選的所有寶可夢不計算弱點・抵抗力造成其選擇次數×60點傷害。1隻可選擇2次以上。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "相手のポケモンを4回選び、選んだポケモン全員に、弱点・抵抗力を計算せず、選んだ回数×60ダメージ。1匹を2回以上選べる。対戦中、自分はVSTARパワーを1回しか使えない。"
},
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "F"
}
export default card