1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 10:29:54 +00:00

48 lines
1.3 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "โมรุเปโกะ <ของแมรี>",
id: "Morpeko <Marnie>"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
th: "จะกินเมล็ดพืชอยู่เสมอเพื่อคลายหิว หากท้องว่างจนเกินไป จิตใจจะ ปั่นป่วนจนก้าวร้าวขึ้น",
id: "Ia selalu memakan biji-bijian untuk menahan rasa lapar, tetapi jika terlalu lapar ia akan menjadi frustrasi dan brutal."
},
stage: "Basic",
attacks: [{
name: {
th: "สไปก์วีล",
id: "Spike Wheel"
},
effect: {
th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[ความมืด]ที่ติดอยู่กับโปเกมอนนี้ x40",
id: "Kerusakan yang diberikan bertambah sejumlah 40 untuk tiap Energi {Kegelapan} yang dikenakan pada Pokémon ini."
},
damage: "20+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 0,
regulationMark: "I"
}
export default card