1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

63 lines
1.5 KiB
TypeScript
Raw Permalink 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "コマタナ",
'zh-tw': "駒刀小兵",
th: "โคมาทานา",
id: "Pawniard"
},
illustrator: "sowsow",
rarity: "Common",
category: "Pokemon",
dexId: [624],
hp: 70,
types: ["Darkness"],
description: {
ja: "強敵にも 恐れず 挑む。 いざとなると 相手に しがみつき 体中の 刃で 貫く。",
'zh-tw': "遇上強敵也是不畏挑戰。在緊要關頭時會緊緊抓住對手, 以身上的刀刃將其刺穿。",
th: "ต่อกรกับศัตรูที่แข็งแกร่งอย่างไม่เกรงกลัว พอถึงยามคับขันจะเกาะติดศัตรูแน่นแล้วใช้ใบมีดทั่วทั้งตัวแทง",
id: "Pawniard tidak takut menantang lawan kuat sekalipun. Ketika waktunya tiba, Pokémon ini mencengkeram lawan dan menusuknya dengan pedang di tubuhnya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ひっかく",
'zh-tw': "抓",
th: "ข่วน",
id: "Menggaruk"
},
damage: 10
}, {
cost: ["Darkness", "Colorless"],
name: {
ja: "つきさす",
'zh-tw': "突刺",
th: "แทง",
id: "Melubangi"
},
damage: 20
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card