import { Card } from '../../../interfaces' import Set from '../Ancient Origins' const card: Card = { name: { en: "Jolteon", fr: "Voltali", }, illustrator: "Sanosuke Sakuma", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 135, ], hp: 90, types: [ "Lightning", ], evolveFrom: { en: "Eevee", fr: "Évoli", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Electric Effect", fr: "Effet Électrique", }, effect: { en: "Each of your Stage 1 Pokémon in play is now a Lightning Pokémon in addition to its existing types.", fr: "Chacun de vos Pokémon de Niveau 1 en jeu est maintenant un Pokémon Lightning en plus de ses types existants.", }, }, ], attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder Blast", fr: "Grondement de Tonnerre", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 0 } export default card