import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Mareanie" }, illustrator: "Saya Tsuruta", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Darkness"], description: { en: "This Pokémon wanders the seaside looking for food. It often gets electric shocks from broken Pincurchin spines that it tries to eat." }, stage: "Basic", attacks: [{ name: { en: "Pierce" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 2 } export default card