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

54 lines
920 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "電肚蛙"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
'zh-tw': "只要伸縮肥嘟嘟的身體,就能讓肚子上的發電臍產生大量的電氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "電磁波"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
cost: ["Lightning"]
}, {
name: {
'zh-tw': "雙峰伏特"
},
effect: {
'zh-tw': "若希望將最多2張這隻寶可夢身上附加的【雷】能量卡丟棄增加其張數×80點傷害。"
},
damage: "10+",
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card