import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Electivire", fr: "Élekable", }, illustrator: "kawayoo", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 466, ], hp: 140, types: [ "Lightning", ], evolveFrom: { en: "Electabuzz", fr: "Élektek", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder Punch", fr: "Poing-Éclair", }, effect: { en: "Flip a coin. If heads, this attack does 60 more damage. If tails, this Pokémon does 20 damage to itself.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 60 dégâts supplémentaires. Si c’est pile, ce Pokémon s’inflige 20 dégâts.", }, damage: 60, }, { cost: [ "Lightning", "Lightning", "Colorless", "Colorless", ], name: { en: "Giga Impact", fr: "Giga Impact", }, effect: { en: "This Pokémon can't attack during your next turn.", fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.", }, damage: 170, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 4, } export default card