import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Magnemite", fr: "Magnéti", es: "Magnemite", it: "Magnemite", pt: "Magnemite", de: "Magnetilo" }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 81, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Metal Sound", fr: "Strido-Son", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Electro Ball", fr: "Boule Élek", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card