import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Emolga" }, illustrator: "Naoki Saito", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Lightning"], description: { en: "As Emolga flutters through the air, it crackles\nwith electricity. This Pokémon is cute, but it can\ncause a lot of trouble." }, stage: "Basic", attacks: [{ name: { en: "Static Shock" }, damage: 30, cost: ["Lightning"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card