1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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

62
data-asia/SV/SV4a/219.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ヤドン",
'zh-tw': "呆呆獸",
id: "Slowpoke"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
dexId: [79],
hp: 70,
types: ["Water"],
description: {
ja: "いつも ボーッとしていて なにを 考えているか わからない。 尻尾で エサを 釣るのが 得意。",
'zh-tw': "總是一副在發呆的樣子,不知道在想些什麼。 擅長用尾巴來釣食物。",
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': "睡覺",
id: "Tidur"
},
effect: {
ja: "このポケモンをねむりにする。このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢【睡眠】。將這隻寶可夢恢復「30」HP。",
id: "Ubah kondisi Pokémon ini menjadi Tidur. Pulihkan HP Pokémon ini sejumlah 30."
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "ずつき",
'zh-tw': "頭錘",
id: "Tandukan Kepala"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card