import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Manectric", fr: "Elecsprint" }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 310, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Electrike", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Plasma", fr: "Plasma" }, effect: { en: "Search your discard pile for a Lightning Energy card and attach it to Manectric.", fr: "Cherchez dans votre pile de défausse une carte Énergie et attachez-la à Elecsprint." }, damage: 20, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Quick Blow", fr: "Coup d'poing éclair" }, effect: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires." }, damage: "40+", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card