import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Voltorb", }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 100, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Psycho Waves", }, effect: { en: "Discard an Energy card attached to Voltorb. The Defending Pokémon is now Confused.", }, }, { cost: [ "Colorless", ], name: { en: "Thunder Wave", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card