import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw5-60", localId: 60, // Card informations name: { en: "Umbreon", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 197, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/60/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/60/high", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: "TOKIYA", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Shadow Drain", }, text: { en: "Heal from this Pokémon the same amount of damage you did to the Defending Pokémon.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slashing Strike", }, text: { en: "This Pokémon can't use Slashing Strike during your next turn.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card