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

45 lines
721 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "咚咚鼠"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "用尾巴從發電廠或民宅的插座吸取電力,並從鬍鬚放出電擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card