1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

70
data-asia/SV/SV1V/066.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "イッカネズミ",
'zh-tw': "一家鼠",
th: "อิกคาเนซูมิ",
id: "Maushold"
},
illustrator: "KIYOTAKA OSHIYAMA",
rarity: "Uncommon",
category: "Pokemon",
dexId: [925],
hp: 70,
types: ["Colorless"],
description: {
ja: "大きな 2匹が 子どもたちを 守りながら 戦う。 強い 相手には 全員で 立ち向かう。",
'zh-tw': "身型大的2隻會在戰鬥的同時保護著孩子。對抗實力 強大的對手時會集體出陣。",
th: "ตัวใหญ่ 2 ตัวจะคอยปกป้องพวกตัวเล็กพลางต่อสู้ไปด้วย จะเผชิญหน้ากับคู่ต่อสู้ที่แข็งแกร่งด้วยกันทุกตัว",
id: "Dua ekor Maushold besar bertarung sambil melindungi anak-anak mereka. Seluruh Pokémon ini ikut bertarung menghadapi musuh yang kuat."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ビンタ",
'zh-tw': "巴掌",
th: "ตบ",
id: "Menampar"
},
damage: 40
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ファミリーアタック",
'zh-tw': "家族攻擊",
th: "แฟมิลีแอทแทก",
id: "Family Attack"
},
damage: "70×",
effect: {
ja: "自分の場の「イッカネズミ」の数×70ダメージ。",
'zh-tw': "造成自己的場上的「一家鼠」的數量×70點傷害。",
th: "แดเมจจะเท่ากับจำนวน [อิกคาเนซูมิ] บนกระดานฝ่ายเรา x70",
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