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

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "班基拉斯"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 180,
types: ["Darkness"],
description: {
'zh-tw': "擁有無論遭受任何攻擊都能毫髮無傷的身體,因此會不斷向對手挑戰。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "激狂粉碎"
},
effect: {
'zh-tw': "造成自己的所有備戰寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "10×",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "地震"
},
effect: {
'zh-tw': "自己的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 180,
cost: ["Darkness", "Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card