mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ワッカネズミ",
|
||
'zh-tw': "一對鼠",
|
||
th: "วักคาเนซูมิ",
|
||
id: "Tandemaus"
|
||
},
|
||
|
||
illustrator: "Oswaldo KATO",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [924],
|
||
hp: 30,
|
||
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: "Mengumpulkan"
|
||
},
|
||
|
||
effect: {
|
||
ja: "自分の山札を2枚引く。",
|
||
'zh-tw': "從自己的牌庫抽出2張卡。",
|
||
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
|
||
id: "Ambil 2 kartu dari atas Deck sendiri."
|
||
}
|
||
}, {
|
||
cost: ["Colorless", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ひっぱたく",
|
||
'zh-tw': "重摑",
|
||
th: "ตบแรง",
|
||
id: "Menepuk"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |