import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Emolga", fr: "Emolga", es: "Emolga", it: "Emolga", pt: "Emolga", de: "Emolga" }, illustrator: "Akira Komayama", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 587, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Bounce", fr: "Rebond", }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card