import { Card } from "../../../interfaces" import Set from "../Fusion Strike" const card: Card = { dexId: [100], set: Set, name: { en: "Voltorb", fr: "Voltorbe", es: "Voltorb", it: "Voltorb", pt: "Voltorb", de: "Voltobal" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Lightning"], stage: "Basic", retreat: 1, regulationMark: "E", illustrator: "Tomokazu Komiya", description: { en: "Usually found in power plants. Easily mistaken for a Poké Ball, it has zapped many people." }, attacks: [{ cost: ["Colorless"], name: { en: "Single Shot Blast" }, damage: 30, effect: { en: "Flip a coin. If tails, this attack does nothing." } }], variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card