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

55 lines
1.2 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆香猿VSTAR",
ja: "バオッキーVSTAR"
},
illustrator: "nagano",
category: "Pokemon",
hp: 260,
types: ["Fire"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "火球狂燒",
ja: "ひのたまフィーバー"
},
effect: {
'zh-tw': "若希望將自己的牌庫上方最多5張卡丟棄。然後增加丟棄的張數×40點傷害。",
ja: "のぞむなら、自分の山札を上から5枚までトラッシュする。その後、トラッシュした枚数×40ダメージ追加。"
},
damage: "40",
cost: ["Fire", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星餘火",
ja: "エンバースター"
},
effect: {
'zh-tw': "造成自己的棄牌區的能量卡的張數×30點傷害。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "自分のトラッシュにあるエネルギーの枚数×30ダメージ。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: "30×",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card