1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

52
data-asia/SV/SV8s/073.ts Normal file
View File

@ -0,0 +1,52 @@
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