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

55
data-asia/S/S12a/214.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆香猿VSTAR",
ja: "バオッキーVSTAR"
},
illustrator: "nagano",
category: "Pokemon",
hp: 260,
types: ["Fire"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "火球狂燒",
ja: "ひのたまフィーバー"
},
effect: {
'zh-tw': "若希望將自己的牌庫上方最多5張卡丟棄。然後增加丟棄的張數×40點傷害。",
ja: "のぞむなら、自分の山札を上から5枚までトラッシュする。その後、トラッシュした枚数×40ダメージ追加。"
},
damage: "40",
cost: ["Fire", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星餘火",
ja: "エンバースター"
},
effect: {
'zh-tw': "造成自己的棄牌區的能量卡的張數×30點傷害。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "自分のトラッシュにあるエネルギーの枚数×30ダメージ。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: "30×",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card