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' import set from '../../../sets/swsh/swsh2' const card: Card = { // Card Global Informations id: "swsh2-59", localId: 59, name: { en: "Electivire", }, tags: [ ], illustrator: "tetsuya koizumi", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations evolveFrom: { en: "Electabuzz", }, attacks: [ { cost: [ Type.LIGHTNING, Type.COLORLESS, ], name: { en: "Thunder Shock", }, text: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 50, }, { cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS, ], name: { en: "Electrified Bolt", }, text: { en: "If this Pokémon has any Special Energy attached, this attack does 90 more damage.", }, damage: "90+", }, ], weaknesses: [ { type: Type.FIGHTING, value: "×2", }, ], retreat: 3, // Card Trainer/Energy informations } export default card