1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +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

63
data-asia/SV/SV4K/014.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "カルボウ",
'zh-tw': "炭小侍",
th: "คาร์โบ"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
dexId: [935],
hp: 80,
types: ["Fire"],
description: {
ja: "焼けた 木炭に 命が 宿り ポケモンになった。 燃える 闘志で 強敵にも 戦いを 挑む。",
'zh-tw': "生命寄宿在燃燒的木炭上變成了寶可夢。即使敵人再強, 也會以燃燒的鬥志迎面而戰。",
th: "เป็นโปเกมอนที่เกิดจากถ่านไม้ที่ลุกไหม้ มีจิตวิญญาณการต่อสู้ที่เร่าร้อน กล้าเผชิญหน้าแม้กับศัตรูที่แข็งแกร่ง"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "とうしをもやす",
'zh-tw': "燃燒鬥志",
th: "จุดไฟนักสู้"
},
effect: {
ja: "自分の山札から「基本エネルギー」を1枚選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張「基本【火】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "げんこつ",
'zh-tw': "拳骨",
th: "กำปั้น"
},
damage: 50
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card