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

50 lines
834 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: "ヒスイ ジュナイパーV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
attacks: [{
cost: ["Fighting"],
name: {
ja: "やまがり"
},
effect: {
ja: "自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。"
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "きんせつしゃげき"
},
damage: 100,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2
}
export default card