import { Card } from '../../../interfaces' import Set from '../Evolving Skies' const card: Card = { set: Set, variants: { normal: true, reverse: true, holo: false, firstEdition: false }, name: { en: "Mareep", fr: "Wattouat", es: "Mareep", it: "Mareep", pt: "Mareep", de: "Voltilamm" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Lightning"], stage: "Basic", illustrator: "Yukiko Baba", attacks: [{ name: { en: "Rear Kick", fr: "Ruade", es: "Patada Trasera", it: "Retrocalcio", pt: "Rear Kick", de: "Rückwärtskick" }, damage: 10, cost: ["Colorless"] }, { name: { en: "Electro Ball", fr: "Boule Élek", es: "Bola Voltio", it: "Energisfera", pt: "Electro Ball", de: "Elektroball" }, damage: 30, cost: ["Lightning", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, description: { en: "Rubbing its fleece generates electricity. You'll want to pet it because it's cute, but if you use your bare hand, you'll get a painful shock." }, dexId: [179], regulationMark: "E" } export default card