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

55 lines
1001 B
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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Morpeko"
},
illustrator: "kodama",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
id: "Karena kantong lambungnya kecil, Pokémon ini akan segera merasa lapar jika tidak selalu memakan biji yang dimasukkan di kantongnya."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Mencari Kudapan"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 1 kartu dari atas Deck sendiri, lalu kembalikan ke posisi semula. Pemain dapat membuang kartu tersebut ke Trash."
}
}],
attacks: [{
name: {
id: "Memungut dan Mengenakan"
},
effect: {
id: "Pilih paling banyak 2 lembar Energi Dasar dari Trash sendiri, lalu kenakan sesukanya pada Pokémon sendiri."
},
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card