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