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

63
data-asia/SV/SV2D/063.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ワッカネズミ",
'zh-tw': "一對鼠",
th: "วักคาเนซูมิ",
id: "Tandemaus"
},
illustrator: "Sekio",
rarity: "Common",
category: "Pokemon",
dexId: [924],
hp: 40,
types: ["Colorless"],
description: {
ja: "息の合った コンビネーションで 巣の 材料に なりそうなものを 前歯で 切り出して 運び去る。",
'zh-tw': "會以絕佳的團隊合作,把能當成巢穴建材的東西 用門牙切斷後搬走。",
th: "ใช้ฟันหน้าตัดวัสดุที่น่าจะนำมาทำรังได้แล้วแบกกลับไปอย่างพร้อมเพรียง",
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': "附著",
th: "ติดหนึบ",
id: "Menempel"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "けとばす",
'zh-tw': "踢飛",
th: "ดีด",
id: "Tendangan Penghempas"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card