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: "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.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/72/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/72/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/72/high.png", }, }, evolveFrom: { en: "Electabuzz", fr: "Élektek", }, tags: [ Tag.STAGE1, ], illustrator: { id: 48, name: "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