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

74 lines
1.9 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': "<火箭隊的>閃電鳥",
'zh-cn': "<火箭隊的>閃電鳥",
ja: "ロケット団のサンダー"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "傳說的鳥寶可夢。 據說只要牠磨蹭翅膀, 立刻就會有雷電劈下。",
'zh-cn': "傳說的鳥寶可夢。 據說只要牠磨蹭翅膀, 立刻就會有雷電劈下。",
ja: "羽根を こすり合わせると たちまち 雷が 落ちると 言われている 伝説の 鳥ポケモン。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "阻礙之翼",
'zh-cn': "阻礙之翼",
ja: "ジャミングウイング"
},
effect: {
'zh-tw': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量改附於對手的備戰寶可夢身上。",
'zh-cn': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量改附於對手的備戰寶可夢身上。",
ja: "のぞむなら、相手のバトルポケモンについているエネルギーを1個選び、相手のベンチポケモンにつけ替える。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "惡棍閃電",
'zh-cn': "惡棍閃電",
ja: "バッドサンダー"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有「火箭隊能量」則增加60點傷害。",
'zh-cn': "若這隻寶可夢身上附有「火箭隊能量」則增加60點傷害。",
ja: "このポケモンに「ロケット団エネルギー」がついているなら、60ダメージ追加。"
},
damage: "60",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "I",
rarity: "Rare",
dexId: [145]
}
export default card