import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex15-48", localId: 48, // Card informations name: { en: "Elekid δ", }, hp: 40, type: [ Type.FIGHTING, ], dexId: 239, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/48/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/48/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 23, type: AbilityType.POKEPOWER, name: { en: "Baby Evolution", }, text: { 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: [ Type.COLORLESS ], name: { en: "Thunder Spear", }, text: { 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: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card