import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Holon's Electrode", }, illustrator: "Hisao Nakamura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 101, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Holon's Voltorb", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Dazzle Blast", }, effect: { en: "The Defending Pokémon is now Confused.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card