1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

68
data-asia/SV/SV10/078.ts Normal file
View File

@ -0,0 +1,68 @@
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