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

49 lines
933 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "エレブー",
'zh-tw': "電擊獸",
'zh-cn': "電擊獸"
},
illustrator: "Amelicart",
rarity: "Common",
category: "Pokemon",
dexId: [125],
hp: 90,
types: ["Lightning"],
description: {
ja: "全身から つねに 電気が 放たれているため 近づくと 髪の毛が 逆立ってしまう。",
'zh-tw': "身體隨時都在放電, 所以只要靠近牠, 頭髮就會倒豎起來。",
'zh-cn': "身體隨時都在放電, 所以只要靠近牠, 頭髮就會倒豎起來。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "エレキスラッグ",
'zh-tw': "電氣猛擊",
'zh-cn': "電氣猛擊"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card