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

57 lines
1.1 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "電擊獸",
ja: "エレブー"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "很多發電廠會用地面屬性的寶可夢當守衛,藉以對抗 想伺機偷吃電力的電擊獸。",
ja: "電気を 狙う エレブーの 対策に じめんポケモンを 置く 発電所は 多い。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "電磁波",
ja: "でんじは"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。"
},
cost: ["Lightning"]
}, {
name: {
'zh-tw': "伏特頭擊",
ja: "ヘッドボルト"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [125]
}
export default card