1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

51
data-asia/S/S9a/086.ts Normal file
View File

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