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

54
data-asia/S/S12a/220.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "捷拉奧拉VSTAR",
ja: "ゼラオラVSTAR"
},
illustrator: "Ligton",
category: "Pokemon",
hp: 270,
types: ["Lightning"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "粉碎律動",
ja: "クラッシュビート"
},
effect: {
'zh-tw': "若希望,將場上的競技場卡丟棄。",
ja: "のぞむなら、場に出ているスタジアムをトラッシュする。"
},
damage: 190,
cost: ["Lightning", "Lightning", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]雷霆星星",
ja: "いかずちスター"
},
effect: {
'zh-tw': "選擇4次對手的寶可夢對所選的所有寶可夢不計算弱點・抵抗力造成其選擇次數×60點傷害。1隻可選擇2次以上。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "相手のポケモンを4回選び、選んだポケモン全員に、弱点・抵抗力を計算せず、選んだ回数×60ダメージ。1匹を2回以上選べる。対戦中、自分はVSTARパワーを1回しか使えない。"
},
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "F"
}
export default card