import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Holon's Magneton", }, illustrator: "Katsura Tabata", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 82, ], hp: 70, types: [ "Metal", ], evolveFrom: { en: "Holon's Magnemite", }, stage: "Stage1", attacks: [ { cost: [ "Metal", "Colorless", ], name: { en: "Extra Ball", }, effect: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 20 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card