1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-01 12:22:02 +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

57
data-asia/SV/SV2P/060.ts Normal file
View File

@@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ナマケロ",
'zh-tw': "懶人獺",
th: "นามาเคโร",
id: "Slakoth"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [287],
hp: 70,
types: ["Colorless"],
description: {
ja: "1日のうち 20時間 眠る。 見ている 相手の 眠気を 誘うのも 能力の ひとつ。",
'zh-tw': "1天會睡上20個小時。使看著自己的對手睡意漸濃 也是牠的能力之一。",
th: "ใน 1 วันจะนอน 20 ชั่วโมง การทำให้คนที่มองมันง่วงนอนได้ก็เป็นความสามารถอย่างหนึ่ง",
id: "Slakoth tidur 20 jam dalam 1 hari. Mengundang kantuk terhadap lawan yang melihatnya adalah salah satu kemampuan Pokémon ini."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "あくび",
'zh-tw': "哈欠",
th: "หาว",
id: "Menguap"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card