1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

55
data-asia/SV/SV4K/038.ts Normal file
View File

@@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "コジオ",
'zh-tw': "鹽石寶",
th: "โคจีโอ"
},
illustrator: "Pani Kobayashi",
rarity: "Common",
category: "Pokemon",
dexId: [932],
hp: 70,
types: ["Fighting"],
description: {
ja: "地底の 岩塩層で 生まれた。 貴重な 塩を 分けてくれるため 昔は とくに 大事にされた。",
'zh-tw': "出生在地底的岩鹽層。會願意分享貴重的鹽巴, 因此在過去更是受到重視。",
th: "เกิดในชั้นหินเกลือใต้ดิน ในสมัยก่อนมีผู้ให้ความสำคัญกับมันเป็นอย่างมากเพราะมันแบ่งปันเกลือที่แสนล้ำค่าให้"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "おいつめる",
'zh-tw': "窮追不捨",
th: "ไล่ต้อน"
},
damage: 10,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card