mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
1010 B
TypeScript
56 lines
1010 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S4a"
|
||
|
||
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 |