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

51 lines
793 B
TypeScript
Raw Permalink 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "一家鼠"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "身型大的2隻會在戰鬥的同時保護著孩子。對抗實力 強大的對手時會集體出陣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "巴掌"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "家族攻擊"
},
effect: {
'zh-tw': "造成自己的場上的「一家鼠」的數量×70點傷害。"
},
damage: "70×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card