1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

63 lines
1.9 KiB
TypeScript
Raw 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: "kantaro",
rarity: "Common",
category: "Pokemon",
dexId: [935],
hp: 60,
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"],
name: {
ja: "マグマパンチ",
'zh-tw': "熔岩拳",
th: "แม็กมาพันช์"
},
damage: 20
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card