import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Mareep", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Lightning", ], attacks: [ { cost: [ "Lightning", ], name: { en: "Static Shock", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card