import { Card } from "../../../interfaces" import Set from "../Mythical Island" const card: Card = { set: Set, name: { en: "Morelull" }, illustrator: "Saya Tsuruta", category: "Pokemon", hp: 60, types: ["Grass"], description: { en: "Pokémon living in the forest eat the delicious caps on Morelull's head. The caps regrow overnight." }, stage: "Basic", attacks: [{ name: { en: "Ram" }, damage: 20, cost: ["Grass"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1, rarity: "One Diamond" } export default card