1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

52 lines
1.5 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Smoochum",
th: "มุจูล"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
id: "Smoochum mandi begitu wajahnya kotor walau sedikit saja. Akan tetapi, tampaknya Pokémon ini tidak terlalu peduli pada kotoran di tubuhnya.",
th: "หากใบหน้าเปรอะเปื้อนแม้เพียงเล็กน้อยจะไปอาบน้ำ แต่ดูเหมือนว่า จะไม่ใส่ใจกับความสกปรกของร่างกาย"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Ciuman Hip Hip Hore",
th: "จูบครึ้มใจ"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar {Psychic} dari Deck sendiri, lalu kenakan pada 1 Pokémon Cadangan. Kemudian, kocok Deck.",
th: "เลือกการ์ด [พลังงานพื้นฐาน[พลังจิต]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่ โปเกมอนบนเบนช์ 1 ตัว แล้วสับสำรับการ์ด"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "H"
}
export default card