1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SC2b/054.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "班基拉斯"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 180,
types: ["Fighting"],
description: {
'zh-tw': "擁有無論遭受任何攻擊都能毫髮無傷的身體,因此會不斷向對手挑戰。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "岩盤崩裂"
},
effect: {
'zh-tw': "將場上的競技場卡丟棄。"
},
damage: 120,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "山岳橫掃"
},
effect: {
'zh-tw': "將自己的牌庫上方5張卡丟棄。"
},
damage: 250,
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card