1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

60 lines
1.5 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "コマタナ",
'zh-tw': "駒刀小兵",
th: "โคมาทานา"
},
illustrator: "Hitoshi Ariga",
rarity: "Common",
category: "Pokemon",
dexId: [624],
hp: 70,
types: ["Metal"],
description: {
ja: "強敵にも 恐れず 挑む。 いざとなると 相手に しがみつき 体中の 刃で 貫く。",
'zh-tw': "遇上強敵也是不畏挑戰。在緊要關頭時會緊緊抓住對手,以身上的刀刃將其刺穿。",
th: "ต่อกรกับศัตรูที่แข็งแกร่งอย่างไม่เกรงกลัว พอถึงยามคับขันจะเกาะติดศัตรูแน่นแล้วใช้ใบมีดทั่วทั้งตัวแทง"
},
stage: "Basic",
attacks: [{
cost: ["Metal"],
name: {
ja: "トリプルカッター",
'zh-tw': "三重利刃",
th: "ทริปเปิลคัตเตอร์"
},
damage: "10×",
effect: {
ja: "コインを3回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card