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

56 lines
915 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "噴火龍"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "會噴出彷彿連岩石都能燒焦的灼熱火焰。有時會引發森林火災。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "戰鬥意識"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方3張卡選擇其中1張卡加入手牌。將剩餘卡丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "王者火焰"
},
effect: {
'zh-tw': "增加自己的棄牌區的「丹帝」的張數×50點傷害。"
},
damage: "100+",
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card