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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/60/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 20, name: "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