import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Joltik", fr: "Statitik", es: "Joltik", it: "Joltik", pt: "Joltik", de: "Wattzapf" }, illustrator: "Motofumi Fujiwara", rarity: "Common", category: "Pokemon", set: Set, hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Flop", fr: "Flop", es: "Vuelta", it: "Tonfo", pt: "Baque", de: "Plumps" }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "Joltik can be found clinging to other Pokémon. It's soaking up static electricity because it can't produce a charge on its own." }, dexId: [595] } export default card