import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Magnemite", fr: "Magnéti", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 81, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Supersonic", fr: "Ultrason", }, effect: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card