mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヤドン",
|
||
'zh-tw': "呆呆獸",
|
||
th: "ยาดง",
|
||
id: "Slowpoke"
|
||
},
|
||
|
||
illustrator: "Narumi Sato",
|
||
category: "Pokemon",
|
||
dexId: [79],
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "いつも ボーッとしていて なにを 考えているか わからない。 尻尾で エサを 釣るのが 得意。",
|
||
'zh-tw': "總是一副在發呆的樣子,不知道在想些什麼。 擅長用尾巴來釣食物。",
|
||
th: "ดูเหม่อลอยตลอดเวลา ไม่รู้ว่าคิดอะไรอยู่ ถนัดใช้หางตกเหยื่อ",
|
||
id: "Slowpoke selalu bengong dan tidak ada yang tahu apa yang sedang dipikirkannya. Pokémon ini pandai memancing makanan menggunakan ekornya."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "ねむる",
|
||
'zh-tw': "睡覺",
|
||
th: "นิทรา",
|
||
id: "Tidur"
|
||
},
|
||
|
||
effect: {
|
||
ja: "このポケモンをねむりにする。このポケモンのHPを「30」回復する。",
|
||
'zh-tw': "將這隻寶可夢【睡眠】。將這隻寶可夢恢復「30」HP。",
|
||
th: "ทำให้โปเกมอนนี้เป็นสภาวะ[หลับ] ฟื้นฟู HP ของโปเกมอนนี้ [30]",
|
||
id: "Ubah kondisi Pokémon ini menjadi Tidur. Pulihkan HP Pokémon ini sejumlah 30."
|
||
}
|
||
}, {
|
||
cost: ["Water", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ずつき",
|
||
'zh-tw': "頭錘",
|
||
th: "พุ่งหัวชน",
|
||
id: "Tandukan Kepala"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |