import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Magneton", fr: "Magneton", }, illustrator: "Noriko Hotta", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 82, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Magnemite", fr: "Magneti", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Speed Ball", fr: "Balle rapide", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tri Attack", fr: "Triplattaque", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: "20×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, description: { en: "The Magnemite are united by a magnetism so powerful, it dries all moisture in its vicinity." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card