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

60 lines
1.3 KiB
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 "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "駒刀小兵",
th: "โคมาทานา"
},
illustrator: "otumami",
category: "Pokemon",
hp: 60,
types: ["Metal"],
description: {
'zh-tw': "以劈斬司令為首領組成族群。目標是有朝一日能統領同類,所以每天都在不懈地鍛鍊。",
th: "สร้างฝูงโดยให้คิริคิซันเป็นจ่าฝูง ใฝ่ฝันที่จะเป็นผู้นำฝูงเองจึงหมั่นฝึกฝนอยู่ทุกวี่วัน"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "劍舞",
th: "ระบำดาบ"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢「劈開」的傷害「+70」點。",
th: "เทิร์นถัดไปของฝ่ายเรา แดเมจจากท่า [ฟันแหลก] ของโปเกมอนนี้จะถูก [+70]"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "劈開",
th: "ฟันแหลก"
},
damage: 10,
cost: ["Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card