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

55 lines
891 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 "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "妖火紅狐"
},
illustrator: "Uta",
category: "Pokemon",
hp: 150,
types: ["Fire"],
description: {
'zh-tw': "能用超能力操控攝氏3000度的火焰旋渦。用旋渦包圍敵人後將其燒盡。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "閃焰遊行"
},
effect: {
'zh-tw': "造成自己的棄牌區的「莎莉娜」的張數×60點傷害。"
},
damage: "60×",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "能量粉碎"
},
effect: {
'zh-tw': "造成對手的場上寶可夢身上附加的能量的數量×50點傷害。"
},
damage: "50×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card