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

68 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ホゲータ",
'zh-tw': "呆火鱷",
th: "โฮเกเตอร์",
id: "Fuecoco"
},
illustrator: "ryoma uratsuka",
rarity: "Common",
category: "Pokemon",
dexId: [909],
hp: 90,
types: ["Fire"],
description: {
ja: "温かい 岩の上で 寝転び 四角い うろこから 取り込んだ 熱で 炎エネルギーを 作る。",
'zh-tw': "會躺在溫熱的岩石上,用四角形的鱗片所吸收的 熱能來製造火之能量。",
th: "นอนเกลือกกลิ้งอยู่บนหินอุ่น สร้างพลังงานไฟด้วยความร้อนที่ดูดซับเข้ามาด้วยเกล็ดสี่เหลี่ยม",
id: "Fuecoco berbaring di atas batu hangat dan menciptakan energi api dengan menyerap energi panas tersebut menggunakan sisik perseginya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぼーっとする",
'zh-tw': "發呆",
th: "เหม่อลอย",
id: "Melamun"
},
effect: {
ja: "コインを1回投げオモテなら、このポケモンのHPを「30」回復する。",
'zh-tw': "擲1次硬幣若為正面則將這隻寶可夢恢復「30」HP。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว ฟื้นฟู HP ของโปเกมอนนี้ [30]",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pulihkan HP Pokémon ini sejumlah 30."
}
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "ほのお",
'zh-tw': "火焰",
th: "ไฟ",
id: "Api"
},
damage: 30
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card