import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Voltorb", }, illustrator: "Keiji Kinebuchi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 100, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Swift", }, effect: { en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card