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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

64
data-asia/SV/SV4a/318.ts Normal file
View File

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