import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Joltik", fr: "Statitik", es: "Joltik", it: "Joltik", pt: "Joltik", de: "Wattzapf" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 595, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card