mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/SV/SV1V/019.ts
Normal file
68
data-asia/SV/SV1V/019.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1V"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ヤドン",
|
||||
'zh-tw': "呆呆獸",
|
||||
th: "ยาดง",
|
||||
id: "Slowpoke"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
rarity: "Common",
|
||||
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
|
Reference in New Issue
Block a user