import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Electivire", }, illustrator: "Shizurow", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 466, ], hp: 120, types: [ "Lightning", ], stage: "LEVEL-UP", abilities: [ { type: "Poke-BODY", name: { en: "Shocking Tail", }, effect: { en: "As long as Electivire is your Active Pokémon, whenever your opponent attaches an Energy card from his or her hand to 1 of his or her Pokémon, put 2 damage counters on that Pokémon.", }, }, ], attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Pulse Barrier", }, effect: { en: "Discard all of your opponent's Pokémon Tool cards and Stadium cards in play. If you do, prevent all effects, including damage, done to Electivire during your opponent's next turn.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card