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

59
data-asia/SV/SV4K/033.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "コジョフー",
'zh-tw': "功夫鼬",
th: "โคโจฟู"
},
illustrator: "Natsumi Yoshida",
rarity: "Common",
category: "Pokemon",
dexId: [619],
hp: 60,
types: ["Fighting"],
description: {
ja: "小さくても 気性は 荒い。 油断して 近づく 相手には 華麗な 連打を おみまいする。",
'zh-tw': "個頭雖小,個性粗暴。對於漫不經心就靠近自己 的對手會奉上華麗的連擊。",
th: "ถึงแม้จะตัวเล็กแต่มีนิสัยดุดัน จะกระหน่ำตีด้วยลีลางดงามจัดการกับผู้ที่ไม่ระวังเผลอเข้าไปใกล้"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "けたぐり",
'zh-tw': "踢倒",
th: "เตะเรียด"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "せいけんづき",
'zh-tw': "正拳突",
th: "กำปั้นตรง"
},
damage: 20
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card