import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Espeon", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 196, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Energy Crush", }, effect: { en: "Does 20 damage plus 10 more damage for each Energy attached to all of your opponent's Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card