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-48", localId: 48, // Card informations name: { en: "Espeon", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 196, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/48/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/48/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "Mizue" }, abilities: [{ id: 789, type: AbilityType.TALENT, name: { en: "Solar Revelation", }, text: { en: "Prevent all effects of your opponent's attacks, except damage, done to each of your Pokémon that has any Energy attached to it.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psy Report", }, text: { en: "Your opponent reveals his or her hand.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card