import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Marill", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 183, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Sleepy Ball", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card