1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

55 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ワッカネズミ",
'zh-tw': "一對鼠",
th: "วักคาเนซูมิ"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
dexId: [924],
hp: 40,
types: ["Colorless"],
description: {
ja: "どんなときでも 2匹は 一緒。 見つけた エサは ぴったりと 半分こして 仲良く 食べる。",
'zh-tw': "無論何時2隻都待在一起。會把尋獲的食物均分成兩半,親密無間地一同進食。",
th: "ไม่ว่าเมื่อไหร่ก็จะอยู่ด้วยกัน 2 ตัว เมื่อพบอาหารก็จะแบ่งเท่า ๆ กัน และกินด้วยกันอย่างสนิทสนม"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ずっこけ",
'zh-tw': "滑落",
th: "ลื่นไถล"
},
damage: 40,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card