import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Lt. Surge's Jolteon", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 135, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "High Voltage", }, effect: { en: "Flip a coin. If heads, your opponent can't play Trainer cards during his or her next turn.", }, damage: 20, }, { cost: [ "Lightning", "Lightning", "Lightning", ], name: { en: "Thunder Flare", }, effect: { en: "Does 30 damage plus 10 damage times the number of damage counters on Lt. Surge's Jolteon, then flip a coin. If tails, Lt. Surge's Jolteon does 30 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card