mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "イッカネズミ",
|
||
'zh-tw': "一家鼠",
|
||
id: "Maushold"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
category: "Pokemon",
|
||
dexId: [925],
|
||
hp: 70,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
ja: "大きな 2匹が 子どもたちを 守りながら 戦う。 強い 相手には 全員で 立ち向かう。",
|
||
'zh-tw': "身型大的2隻會在戰鬥的同時保護著孩子。對抗實力 強大的對手時會集體出陣。",
|
||
id: "Dua ekor Maushold besar bertarung sambil melindungi anak-anak mereka. Seluruh Pokémon ini ikut bertarung menghadapi lawan yang kuat."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "ビンタ",
|
||
'zh-tw': "巴掌",
|
||
id: "Menampar"
|
||
},
|
||
|
||
damage: 40
|
||
}, {
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ファミリーアタック",
|
||
'zh-tw': "家族攻擊",
|
||
id: "Family Attack"
|
||
},
|
||
|
||
damage: "70×",
|
||
|
||
effect: {
|
||
ja: "自分の場の「イッカネズミ」の数×70ダメージ。",
|
||
'zh-tw': "造成自己的場上的「一家鼠」的數量×70點傷害。",
|
||
id: "Serangan ini memberikan kerusakan sejumlah 70 untuk tiap Maushold di Arena sendiri."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |