1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

68 lines
1.7 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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>喵喵",
'zh-cn': "<火箭隊的>喵喵",
ja: "ロケット団のニャース"
},
illustrator: "Megumi Mizutani",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "白天一直都在睡覺。 到了晚上眼睛就會發光, 在自己的地盤徘徊。",
'zh-cn': "白天一直都在睡覺。 到了晚上眼睛就會發光, 在自己的地盤徘徊。",
ja: "昼間は 寝てばかりいる。 夜になると 目が 輝き 縄張りを 歩きまわる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "占為己有",
'zh-cn': "占為己有",
ja: "ねこばば"
},
effect: {
'zh-tw': "在不看正面的情況下從對手的手牌選擇1張查看那張卡的正面後放回對手的牌庫並重洗。",
'zh-cn': "在不看正面的情況下從對手的手牌選擇1張查看那張卡的正面後放回對手的牌庫並重洗。",
ja: "相手の手札からオモテを見ないで1枚選び、そのカードのオモテを見て、相手の山札にもどして切る。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "亂抓",
'zh-cn': "亂抓",
ja: "みだれひっかき"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×20點傷害。",
'zh-cn': "擲3次硬幣造成正面出現的次數×20點傷害。",
ja: "コインを3回投げ、オモテの数×20ダメージ。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [52]
}
export default card