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

59 lines
1.3 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 "../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