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

45 lines
699 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "莫魯貝可"
},
illustrator: "Megumi Mizutani",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
description: {
'zh-tw': "總是餓著肚子。會吃掉裝在像口袋一樣的袋子裡的種子來發電。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "傷口撒鹽"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加50點傷害。"
},
damage: "10+",
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card