1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

69 lines
895 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 '../Legendary Treasures'
const card: Card = {
name: {
en: "Meloetta-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
648,
],
hp: 110,
types: [
"Psychic",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Brilliant Voice",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.",
},
damage: 20,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Round",
},
effect: {
en: "Does 30 damage times the number of your Pokémon that have the Round attack.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card