1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SV1V/095.ts Normal file
View File

@ -0,0 +1,57 @@
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