import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Morelull" }, illustrator: "Midori Harada", rarity: "One Diamond", category: "Pokemon", hp: 50, types: ["Psychic"], description: { en: "It scatters spores that flicker and glow. Anyone\nseeing these lights falls into a deep slumber." }, stage: "Basic", attacks: [{ name: { en: "Hook" }, damage: 20, cost: ["Psychic"] }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1 } export default card