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

62
data-asia/SV/SV4a/317.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ワッカネズミ",
'zh-tw': "一對鼠",
id: "Tandemaus"
},
illustrator: "Lee HyunJung",
category: "Pokemon",
dexId: [924],
hp: 30,
types: ["Colorless"],
description: {
ja: "息の合った コンビネーションで 巣の 材料に なりそうなものを 前歯で 切り出して 運び去る。",
'zh-tw': "會以絕佳的團隊合作,把能當成巢穴建材的東西 用門牙切斷後搬走。",
id: "Dengan kombinasi yang serasi, pasangan Tandemaus memotong benda yang kelihatannya dapat dijadikan bahan-bahan untuk membuat sarang menggunakan gigi depan dan membawanya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "もってくる",
'zh-tw': "呼喚",
id: "Mengumpulkan"
},
effect: {
ja: "自分の山札を2枚引く。",
'zh-tw': "從自己的牌庫抽出2張卡。",
id: "Ambil 2 kartu dari atas Deck sendiri."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "ひっぱたく",
'zh-tw': "重摑",
id: "Menepuk"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card