import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Electrike", }, illustrator: "Yumi", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Lightning", ], attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Thunderbolt", }, effect: { en: "Discard all Energy from this Pokémon.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card