import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Voltorb", fr: "Voltorbe", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 100, ], hp: 50, types: [ "Lightning", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Floating Electrons", fr: "Électrons Flottants", }, effect: { en: "If this Pokémon has any Energy attached to it, it has no Retreat Cost.", fr: "Si de l’Énergie est attachée à ce Pokémon, il n’a pas de Coût de Retraite.", }, }, ], attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Thunder Shock", fr: "Éclair", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card