import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Emolga", fr: "Emolga", es: "Emolga", it: "Emolga", pt: "Emolga", de: "Emolga" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 587, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Thundershock", fr: "Éclair", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Acrobatics", fr: "Acrobatie", }, effect: { en: "Flip 2 coins. This attack does 20 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 0 } export default card