import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm8-72", localId: 72, // Card informations name: { en: "Electivire", fr: "Élekable", }, hp: 140, type: [ Type.LIGHTNING, ], dexId: 466, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/72/low", fr: "https://assets.tcgdex.net/fr/sm/sm8/72/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/72/high", fr: "https://assets.tcgdex.net/fr/sm/sm8/72/high", }, }, evolveFrom: { en: "Electabuzz", fr: "Élektek", }, tags: [ Tag.STAGE1, ], illustrator: "Akira Komayama", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Electrocharge", fr: "Électrocharge", }, text: { en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 cartes Énergie Lightning dans votre deck et attachez-les à ce Pokémon. Mélangez ensuite votre deck.", }, },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "High-Voltage Knuckle", fr: "Poing Haute Tension", }, text: { en: "Discard 3 Energy from this Pokémon.", fr: "Défaussez 3 Énergies de ce Pokémon.", }, damage: 190 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card