import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Magneton", fr: "Magnéton", }, illustrator: "Tomokazu Komiya", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 82, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Magnemite", fr: "Magnéti", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Static Shock", fr: "Choc Statique", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Electro Ball", fr: "Boule Élek", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card