import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Umbreon", fr: "Noctali", es: "Umbreon", it: "Umbreon", pt: "Umbreon", de: "Nachtara" }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 197, ], hp: 100, types: [ "Darkness", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Confuse Ray", }, effect: { en: "The Defending Pokémon is now Confused.", }, damage: 20, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Shadow Shutdown", }, effect: { en: "Flip 2 coins. If both of them are heads, discard all Energy attached to the Defending Pokémon.", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2 } export default card