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: "ecard3-32", localId: 32, // Card informations name: { en: "Umbreon", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 197, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/32/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/32/high", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", abilities: [{ id: 929, type: AbilityType.POKEBODY, name: { en: "Dark Gaze", }, text: { en: "As long as Umbreon is your Active Pokémon, Benched Pokémon (yours and your opponent's) can't use Poké-Powers.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Sharp Claws", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card