import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Elekid δ", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 239, ], hp: 40, types: [ "Fighting", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Baby Evolution", }, effect: { en: "Once during your turn (before your attack), you may put Electabuzz from your hand onto Elekid (this counts as evolving Elekid) and remove all damage counters from Elekid.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Thunder Spear", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card