import { Card } from "../../../interfaces" import Set from "../Temporal Forces" const card: Card = { set: Set, name: { en: "Charjabug", fr: "Chrysapile", es: "Charjabug", it: "Charjabug", pt: "Charjabug", de: "Akkup" }, rarity: "Illustration rare", category: "Pokemon", hp: 100, types: ["Lightning"], stage: "Stage1", attacks: [{ cost: ["Lightning", "Lightning"], name: { en: "Static Shock", fr: "Choc Statique", es: "Impacto Estático", it: "Shock Statico", pt: "Choque de Estática", de: "Statischer Schock" }, damage: 60 }], retreat: 2, regulationMark: "H" } export default card