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

62 lines
1.5 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "エレキブルex",
'zh-tw': "電擊魔獸ex",
'zh-cn': "電擊魔獸ex"
},
illustrator: "PLANETA Mochizuki",
rarity: "None",
category: "Pokemon",
hp: 280,
types: ["Lightning"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "デュアルボルト",
'zh-tw': "二重伏特",
'zh-cn': "二重伏特"
},
effect: {
ja: "相手のポケモン2匹に、それぞれ50ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的2隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]",
'zh-cn': "對手的2隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "こうでんあつプレス",
'zh-tw': "高電壓壓制",
'zh-cn': "高電壓壓制"
},
damage: "180+",
effect: {
ja: "このワザを使うためのエネルギーより、2個多くエネルギーがついているなら、100ダメージ追加。",
'zh-tw': "若身上附有的能量比使用這個招式所需的能量多2個則增加100點傷害。",
'zh-cn': "若身上附有的能量比使用這個招式所需的能量多2個則增加100點傷害。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "I"
}
export default card