1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

55 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "มาวิป",
id: "Alcremie"
},
illustrator: "Natsumi Yoshida",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
th: "ครีมที่ได้จากมาวิปที่ได้รับการเอาใจใส่นั้นเลิศรสมาก จึงมีแต่เทรนเนอร์ที่คอยดูแลเอาใจใส่มันเป็นอย่างดี",
id: "Dikarenakan Alcremie yang dirawat secara baik mengeluarkan krim yang sangat luar biasa, kebanyakan pelatih merawatnya dengan penuh kelembutan."
},
stage: "Stage1",
attacks: [{
name: {
th: "ขนมหลากสีสัน",
id: "Makanan Manis Aneka Warna"
},
effect: {
th: "เลือกการ์ดโปเกมอนที่เป็นประเภทเดียวกับพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนนี้รวมกันได้สูงสุด 5 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak total 5 lembar Pokémon yang memiliki tipe yang sama dengan Energi Dasar yang dikenakan pada Pokémon ini dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}, {
name: {
th: "เมจิคัลช็อต",
id: "Magical Shot"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card