import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Umbreon δ", }, illustrator: "Ryo Ueda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 197, ], hp: 70, types: [ "Darkness", "Metal", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Delta Moon", }, effect: { en: "When your opponent attaches a Special Energy card from his or her hand to 1 of his or her Pokémon, put 1 damage counter on that Pokémon. You can't use more than 1 Delta Moon Poké-Body each turn.", }, }, ], attacks: [ { cost: [ "Darkness", "Metal", ], name: { en: "Feint Attack", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card