import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Vikavolt V", }, illustrator: "Ayaka Yoshida", rarity: "Ultra Rare", category: "Pokemon", set: Set, hp: 210, types: [ "Lightning", ], attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Paralyzing Bolt", }, effect: { en: "During your opponent’s next turn, they can’t play any Item cards from their hand.", }, damage: 50, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Super Zap Cannon", }, effect: { en: "Discard 2 Energy from this Pokémon.", }, damage: 190, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card