import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Lt. Surge's Voltorb", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 100, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Spin Ball", }, effect: { en: "Flip 1 coin. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Double Spin", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card