import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Magnemite", fr: "Magneti", }, illustrator: "Noriko Hotta", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 81, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Magnetic Switch", fr: "Échange magnétique", }, effect: { en: "Switch Magnemite with 1 of your Benched Pokémon.", fr: "Échangez Magneti avec l’un de vos Pokémon de Banc.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thundershock", fr: "Éclair", }, 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é.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, description: { en: "The units at the sides of its body generate antigravity energy to keep it aloft in the air." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card