import { Card } from '../../../interfaces' import Set from '../POP Series 7' const card: Card = { name: { en: "Mareep", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 179, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Static Shock", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], description: { en: "Its fluffy coat swells to double when static electricity builds up. Touching it can be shocking." }, retreat: 1, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card