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

51 lines
918 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 "../S9a"
const card: Card = {
set: Set,
name: {
ja: "ヒスイ ジュナイパーVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "サマーソルトフェザー"
},
damage: "160",
effect: {
ja: "のぞむなら、自分の手札からエネルギーを3枚までトラッシュし、その枚数×30ダメージ追加。"
}
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "フウウンスター"
},
effect: {
ja: "自分の番に使える。自分の手札が8枚になるように、山札を引く。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2
}
export default card