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

69 lines
1.8 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "イッカネズミ",
'zh-tw': "一家鼠",
'zh-cn': "一家鼠"
},
illustrator: "DOM",
rarity: "Uncommon",
category: "Pokemon",
dexId: [925],
hp: 80,
types: ["Colorless"],
description: {
ja: "大きな 2匹が 子どもたちを 守りながら 戦う。 強い 相手には 全員で 立ち向かう。",
'zh-tw': "身型大的2隻會在戰鬥的 同時保護著孩子。對抗實力 強大的對手時會集體出陣。",
'zh-cn': "身型大的2隻會在戰鬥的 同時保護著孩子。對抗實力 強大的對手時會集體出陣。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ファミリーマーチ",
'zh-tw': "家族行軍",
'zh-cn': "家族行軍"
},
effect: {
ja: "自分の山札から「イッカネズミ『ポケモンex』をふくむ」を2枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張「一家鼠包含『寶可夢【ex】』放置於備戰區。並且重洗牌庫。",
'zh-cn': "從自己的牌庫選擇最多2張「一家鼠包含『寶可夢【ex】』放置於備戰區。並且重洗牌庫。"
}
}, {
cost: ["Colorless"],
name: {
ja: "れんぞくまえば",
'zh-tw': "連續門牙",
'zh-cn': "連續門牙"
},
damage: "30×",
effect: {
ja: "コインを4回投げ、オモテの数×30ダメージ。",
'zh-tw': "擲4次硬幣造成正面出現的次數×30點傷害。",
'zh-cn': "擲4次硬幣造成正面出現的次數×30點傷害。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card