import { Card } from "../../../interfaces" import Set from "../S11" const card: Card = { set: Set, name: { 'zh-tw': "電燈怪" }, illustrator: "aoki", category: "Pokemon", hp: 120, types: ["Lightning"], description: { 'zh-tw': "電燈怪發出的光有著極高的亮度,甚至可以從5000公尺 深的水底照亮水面。" }, stage: "Stage1", attacks: [{ name: { 'zh-tw': "衝撞" }, damage: 30, cost: ["Lightning"] }, { name: { 'zh-tw': "強力伏特" }, effect: { 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" }, damage: 160, cost: ["Lightning", "Lightning", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 2, regulationMark: "F" } export default card