1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

66 lines
1.8 KiB
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>火焰鳥ex",
'zh-cn': "<火箭隊的>火焰鳥ex",
ja: "ロケット団のファイヤーex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "火焰屏障",
'zh-cn': "火焰屏障",
ja: "フレイムバリア"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。",
'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。",
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-50」される。"
},
damage: 110,
cost: ["Fire", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "邪惡灼燒",
'zh-cn': "邪惡灼燒",
ja: "イビルバーン"
},
effect: {
'zh-tw': "選擇1張這隻寶可夢身上附加的「火箭隊能量」將其丟棄。這個情況下將對手的戰鬥寶可夢與附加的卡全部丟棄。",
'zh-cn': "選擇1張這隻寶可夢身上附加的「火箭隊能量」將其丟棄。這個情況下將對手的戰鬥寶可夢與附加的卡全部丟棄。",
ja: "このポケモンについている「ロケット団エネルギー」を1枚選び、トラッシュする。その場合、相手のバトルポケモンと、ついているすべてのカードを、トラッシュする。"
},
cost: ["Fire", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "I",
rarity: "Double rare"
}
export default card