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

70 lines
2.1 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "コータス",
'zh-tw': "煤炭龜",
th: "โคทอยซ์",
id: "Torkoal"
},
illustrator: "Kurata So",
rarity: "Uncommon",
category: "Pokemon",
dexId: [324],
hp: 130,
types: ["Fire"],
description: {
ja: "甲羅の 内側で 石炭を 燃やし 敵に 襲われると 黒い煙を まき散らして 逃げる。",
'zh-tw': "會在甲殼的內側燃燒煤炭。遭受到敵人攻擊時, 會噴灑黑煙然後逃走。",
th: "เผาไหม้ถ่านหินภายในกระดอง พอถูกศัตรูจู่โจมจะพ่นควันดำแล้วหนี",
id: "Torkoal membakar batu bara di dalam tempurungnya. Ketika diserang oleh musuhnya, Pokémon ini menyemburkan asap hitam dan melarikan diri."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ",
id: "Menginjak"
},
damage: 30
}, {
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "しゅうちゅうほうか",
'zh-tw': "集中砲火",
th: "ระดมยิง",
id: "Tembakan Terkonsentrasi"
},
damage: "80×",
effect: {
ja: "このポケモンについているエネルギーの数ぶんコインを投げ、オモテの数×80ダメージ。",
'zh-tw': "擲與這隻寶可夢身上附加的【火】能量的數量相同次數的硬幣造成正面出現的次數×80點傷害。",
th: "ทอยเหรียญตามจำนวนพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนนี้ แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x80",
id: "Lempar koin untuk tiap Energi {Api} yang dikenakan pada Pokémon ini. Serangan ini memberikan kerusakan sejumlah 80 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card