import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Magnemite", }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 81, ], hp: 50, types: [ "Lightning", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Conductive Body", }, effect: { en: "You pay Colorless less to retreat Magnemite for each Magnemite on your Bench.", }, }, ], attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Magnetic Bomb", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage. If tails, Magnemite does 10 damage to itself.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card