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

59 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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 火爆獸VSTAR",
ja: "ヒスイ バクフーンVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "陰森火焰",
ja: "ホロウフレイム"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的備戰寶可夢身上。",
ja: "ダメカン3個を、相手のベンチポケモンに好きなようにのせる。"
},
damage: 180,
cost: ["Psychic", "Psychic", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]陽炎星星",
ja: "カゲロウスター"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置的傷害指示物為4個則將那隻寶可夢【氣絕】。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "相手のバトルポケモンにのっているダメカンが4個なら、そのポケモンをきぜつさせる。対戦中、自分はVSTARパワーを1回しか使えない。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card