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

51 lines
791 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 "../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