1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

46
data-asia/S/SC2b/074.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨炭山VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "噴火彈"
},
effect: {
'zh-tw': "將自己的牌庫上方1張卡丟棄若那張卡為能量卡則增加90點傷害。然後將丟棄的能量卡附於這隻寶可夢身上。"
},
damage: "40+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨岩懸石壁"
},
damage: 240,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card