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

65 lines
1.8 KiB
TypeScript
Raw Permalink 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: "Mesprit",
th: "เอ็มริต"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
id: "Mesprit mengajarkan perihnya rasa sedih dan pentingnya rasa senang kepada manusia. Dikenal sebagai Dewa Emosi.",
th: "สอนให้ผู้คนได้รู้ถึงความทุกข์ทรมานของความเศร้าและคุณค่าของความ ยินดี ถูกเรียกว่าเป็นเทพแห่งอารมณ์"
},
stage: "Basic",
attacks: [{
name: {
id: "Memuaskan Hati",
th: "เติมเต็มหัวใจ"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri.",
th: "เลือกการ์ด [พลังงานพื้นฐาน[พลังจิต]] ได้สูงสุด 2 ใบจากบนมือฝ่ายเรา ติดที่ โปเกมอนฝ่ายเราตามชอบ"
},
cost: ["Colorless"]
}, {
name: {
id: "God Burst",
th: "ก็อดเบิสต์"
},
effect: {
id: "Jika tidak ada Uxie dan Azelf di Cadangan sendiri, serangan ini gagal.",
th: "ถ้าบนเบนช์ฝ่ายเราไม่มี [ยุคซี] [อักนอม] อยู่ ท่าต่อสู้นี้จะล้มเหลว"
},
damage: 160,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card