1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

58 lines
1.0 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "猛火猴",
ja: "モウカザル"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "利用天花板和牆壁使出空中攻擊。尾巴上的火焰也是武器之一。",
ja: "天井や 壁を 利用して 空中殺法を 繰り出す。 尻尾の 炎も 武器の ひとつ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "火焰",
ja: "ほのお"
},
damage: 30,
cost: ["Fire"]
}, {
name: {
'zh-tw': "噴射火焰",
ja: "かえんほうしゃ"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
},
damage: 50,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [391]
}
export default card