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

52 lines
903 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 "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 火焰鳥V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "邪焰之翼"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的棄牌區選擇1張【惡】能量卡附於這隻寶可夢身上。在這個回合若已經使出了其他的「邪焰之翼」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "氣場烈焰"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 190,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card