1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

55 lines
1.1 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ホゲータ",
'zh-tw': "呆火鱷",
'zh-cn': "呆火鱷"
},
illustrator: "Tomomi Ozaki",
rarity: "Common",
category: "Pokemon",
dexId: [909],
hp: 80,
types: ["Fire"],
description: {
ja: "炎袋が 小さく あふれ出た エネルギーが 頭の くぼみから 放出され ゆらゆら 揺れる。",
'zh-tw': "火囊很小,因此能量會 溢出來,在牠頭上的 凹槽那裡搖曳晃動。",
'zh-cn': "火囊很小,因此能量會 溢出來,在牠頭上的 凹槽那裡搖曳晃動。"
},
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "ねつでこがす",
'zh-tw': "熱灼燒",
'zh-cn': "熱灼燒"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
'zh-cn': "將對手的戰鬥寶可夢【灼傷】。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card