1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

55 lines
813 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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