1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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/S9/015.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "噴火龍VSTAR",
ja: "リザードンVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 280,
types: ["Fire"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "爆裂火焰",
ja: "ばくれつファイヤー"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加100點傷害。",
ja: "このポケモンにダメカンがのっているなら、100ダメージ追加。"
},
damage: "130",
cost: ["Fire", "Fire", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星火焰",
ja: "スターブレイズ"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。[對戰中己方只可使用1次【VSTAR】力量。]",
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: 320,
cost: ["Fire", "Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card