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

56 lines
898 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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "火焰雞"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "有著強韌的下盤,連30層大樓都能輕鬆躍過。會用火焰拳把對手燒焦。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "雙重屬性"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上改為【火】與【鬥】2種屬性。"
}
}],
attacks: [{
name: {
'zh-tw': "渦輪衝鋒"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於備戰寶可夢身上。"
},
damage: 130,
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card