import { Card } from "../../../interfaces" import Set from "../Surging Sparks" const card: Card = { set: Set, name: { en: "Espurr", fr: "Psystigri", es: "Espurr", it: "Espurr", pt: "Espurr", de: "Psiau" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "See Through", fr: "Main Transparente", es: "Transparencia", it: "Sbirciatina", pt: "Transparência", de: "Durchblick" }, effect: { en: "Your opponent reveals their hand.", fr: "Votre adversaire montre sa main.", es: "Tu rival enseña las cartas de su mano.", it: "Il tuo avversario mostra le carte che ha in mano.", pt: "Seu oponente revela a mão dele.", de: "Dein Gegner zeigt dir seine Handkarten." } }, { cost: ["Psychic", "Colorless"], name: { en: "Psyshot", fr: "Piqûre Psy", es: "Disparo Psi", it: "Psicosparo", pt: "Tiro Psíquico", de: "Psychoschuss" }, damage: 20 }], retreat: 1, regulationMark: "H", variants: { holo: false } } export default card