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:
51
data-asia/S/S9a/086.ts
Normal file
51
data-asia/S/S9a/086.ts
Normal 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
|
Reference in New Issue
Block a user