1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

57 lines
841 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ジュペッタex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 250,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Psychic"],
name: {
ja: "とこやみ"
},
damage: 30,
effect: {
ja: "次の相手の番、相手は手札からグッズを出して使えない。"
}
}, {
cost: ["Psychic", "Colorless"],
name: {
ja: "ポルターガイスト"
},
damage: "60×",
effect: {
ja: "相手の手札を見て、その中にあるトレーナーズの枚数×60ダメージ。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2
}
export default card