1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

73 lines
1.8 KiB
TypeScript
Raw 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ヤドン",
'zh-tw': "呆呆獸",
th: "ยาดง",
id: "Slowpoke"
},
illustrator: "OKACHEKE",
rarity: "Common",
category: "Pokemon",
dexId: [79],
hp: 80,
types: ["Psychic"],
description: {
ja: "動きが のろく 間抜け。 叩かれても 5秒 たってから 痛さを 感じるほどだ。",
'zh-tw': "動作遲鈍且呆頭呆腦。就算挨打也得花上5秒 才會感受到疼痛。",
th: "อืดอาดและซื่อบื้อ ถึงขั้นว่าถูกตีไป 5 วินาทีถึงเพิ่งรู้สึกเจ็บ",
id: "Slowpoke lamban dan lemot. Pokémon ini baru merasakan rasa sakit akibat dipukul setelah 5 detik berlalu."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "かいすいよく",
'zh-tw': "海水浴",
th: "เล่นน้ำทะเล",
id: "Mandi Air Laut"
},
effect: {
ja: "このポケモンのHPを「30」回復し、特殊状態もすべて回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP特殊狀態也全部恢復。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30] รักษาสภาวะผิดปกติทั้งหมดด้วย",
id: "Pulihkan HP Pokémon ini sejumlah 30, lalu pulihkan juga semua Kondisi Khusus yang dialami Pokémon ini."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ずつき",
'zh-tw': "頭錘",
th: "พุ่งหัวชน",
id: "Tandukan Kepala"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card