import { Card } from '../../../interfaces' import Set from '../Base Set 2' 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: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card