1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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/SV1S/010.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "カルボウ",
'zh-tw': "炭小侍",
th: "คาร์โบ",
id: "Charcadet"
},
illustrator: "Souichirou Gunjima",
rarity: "Common",
category: "Pokemon",
dexId: [935],
hp: 60,
types: ["Fire"],
description: {
ja: "焼けた 木炭に 命が 宿り ポケモンになった。 燃える 闘志で 強敵にも 戦いを 挑む。",
'zh-tw': "生命寄宿在燃燒的木炭上變成了寶可夢。即使敵人再強, 也會以燃燒的鬥志迎面而戰。",
th: "เป็นโปเกมอนที่เกิดจากถ่านไม้ที่ลุกไหม้ มีจิตวิญญาณการต่อสู้ที่เร่าร้อน กล้าเผชิญหน้าแม้กับศัตรูที่แข็งแกร่ง",
id: "Jiwa bersemayam ke dalam arang terbakar, lalu berubah menjadi Pokémon. Dengan semangat bertarung yang membara, Charcadet menantang pertarungan meskipun dengan lawan yang kuat."
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "ひのこ",
'zh-tw': "火花",
th: "ลูกไฟ",
id: "Bara Api"
},
damage: 30,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card