mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
44 lines
719 B
TypeScript
44 lines
719 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S4a"
|
||
|
||
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 |