import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Joltik" }, illustrator: "Kouki Saitou", rarity: "One Diamond", category: "Pokemon", hp: 40, types: ["Lightning"], description: { en: "Joltik can be found clinging to other Pokémon.\nIt's soaking up static electricity because it can't\nproduce a charge on its own." }, stage: "Basic", attacks: [{ name: { en: "Jolt" }, damage: 10, cost: ["Lightning"], effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card