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

57 lines
1012 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "閃焰王牌"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "會將小石頭像足球般用腳挑起,製造出纏繞著火焰的足球。會用猛烈的踢射來燃燒對手。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "自由者"
},
effect: {
'zh-tw': "在自己的回合當從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。從自己的棄牌區選擇最多2張【火】能量卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "閃焰前鋒"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 190,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card