1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

63
data-asia/SV/SV1S/056.ts Normal file
View File

@ -0,0 +1,63 @@
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