import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Espeon", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 196, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Dodrio", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", }, damage: 20, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Psychic", }, effect: { en: "Does 30 damage plus 10 more for each Energy Card attached to the Defending Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card