1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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/SCB/095.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SCB"
const card: Card = {
set: Set,
name: {
'zh-tw': "駒刀小兵"
},
illustrator: "otumami",
category: "Pokemon",
hp: 60,
types: ["Metal"],
description: {
'zh-tw': "以劈斬司令為首領組成族群。目標是有朝一日能統領同類,所以每天都在不懈地鍛鍊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "劍舞"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢「劈開」的傷害「+70」點。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "劈開"
},
damage: 10,
cost: ["Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card