import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Electrode", fr: "Electrode", de: "Lektrobal" }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 101, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Voltorb", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Thundershock", fr: "Éclair", de: "Thundershock" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Speed Ball", fr: "Balle rapide", de: "Speed Ball" }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card