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

51 lines
790 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: "Ligton",
category: "Pokemon",
hp: 90,
types: ["Fire"],
description: {
'zh-tw': "將樹枝從尾巴拔出時,會因摩擦而起火。會揮動樹枝,以樹枝上面的火焰向夥伴發送信號。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "烈焰"
},
damage: 30,
cost: ["Fire"]
}, {
name: {
'zh-tw': "閃焰遊行"
},
effect: {
'zh-tw': "造成自己的棄牌區的「莎莉娜」的張數×60點傷害。"
},
damage: "60×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card