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

56 lines
859 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "鴨嘴炎獸"
},
illustrator: "Kazuma Koda",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
'zh-tw': "棲息在火山口。據說1座火山只有一對鴨嘴炎獸。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "爆破拳"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 30,
cost: ["Fire", "Colorless"]
}, {
name: {
'zh-tw': "大地灼燒"
},
effect: {
'zh-tw': "將雙方的牌庫上方各1張卡丟棄增加其中能量卡的張數×100點傷害。"
},
damage: "80+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card