import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Espurr", fr: "Psystigri", }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 677, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Twinkle", fr: "Étincellement", }, effect: { en: "Your opponent’s Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card