import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Manectric", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 310, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Electrike", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Thunder Spear", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Magnetic Tackle", }, effect: { en: "You may do 40 damage plus 10 more damage for each Lightning Energy attached to Manectric. If you do, Manectric does 10 damage to itself.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card