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: "xy9-117", localId: 117, // Card informations name: { en: "Espeon-EX", fr: "Mentali-EX", }, hp: 170, type: [ Type.PSYCHIC, ], dexId: 196, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/117/low", fr: "https://assets.tcgdex.net/fr/xy/xy9/117/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/117/high", fr: "https://assets.tcgdex.net/fr/xy/xy9/117/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Miraculous Shine", fr: "Éclat Miracle", }, text: { en: "Devolve each of your opponent's evolved Pokémon and put the highest Stage Evolution card on it into your opponent's hand.", fr: "Faites dés-évoluer chacun des Pokémon évolués de votre adversaire et mettez sa carte Évolution de plus haut Niveau dans la main de votre adversaire.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psyshock", fr: "Choc Psy", }, text: { en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.", fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.RareUltra, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card