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

52 lines
793 B
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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "熾焰咆哮虎V"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 220,
types: ["Fire"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "宏偉火焰"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【火】能量卡附於1隻備戰寶可夢身上。"
},
damage: 90,
cost: ["Fire", "Fire", "Colorless"]
}, {
name: {
'zh-tw': "閃焰驅動者"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 220,
cost: ["Fire", "Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card