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

53 lines
902 B
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: "Shinji Kanda",
category: "Pokemon",
hp: 90,
types: ["Fire"],
description: {
'zh-tw': "會用火焰解決獵物。但是一不留神就會把獵物 燒得太焦,然後才後悔。",
ja: "炎で 獲物を しとめる。 ついつい 焼きすぎて 黒コゲに してしまい 後悔する。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踢倒",
ja: "けたぐり"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "火拳",
ja: "ほのおパンチ"
},
damage: 70,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [126]
}
export default card