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

55 lines
934 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 "../SCB"
const card: Card = {
set: Set,
name: {
'zh-tw': "電擊魔獸"
},
illustrator: "Megumi Higuchi",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
description: {
'zh-tw': "只要1隻電擊魔獸就能提供整座大都市所有建築物一整年所需的電力。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "回轉攻擊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加30點傷害。"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "閃電上投"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃電上投」。"
},
damage: 180,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card