import { Card } from '../../../interfaces' import Set from '../POP Series 3' const card: Card = { name: { en: "Jolteon", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 135, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Pin Missile", }, effect: { en: "Flip 4 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card