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:
59
data-asia/SV/SV4K/033.ts
Normal file
59
data-asia/SV/SV4K/033.ts
Normal 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
|
Reference in New Issue
Block a user