import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex10-112", localId: 112, // Card informations name: { en: "Umbreon ex", }, hp: 110, type: [ Type.DARKNESS, ], dexId: 197, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/112/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/112/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 1369, type: AbilityType.POKEPOWER, name: { en: "Darker Ring", }, text: { en: "Once during your turn (before your attack), when you play Umbreon ex from your hand to evolve 1 of your Pokémon, switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Black Cry", }, text: { en: "The Defending Pokémon can't retreat or use any Poké-Powers during your opponent's next turn.", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Darkness Fang", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card