import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Morelull", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Psychic", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Spore", }, effect: { en: "Your opponent’s Active Pokémon is now Asleep.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Flop", }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, } export default card