PropertyEncanto Cost (Ink)4 Character VersionUndetected Uncle Ink TypeAmethyst Card TypeCharacter Strength3 Willpower3 Lore Value1 RaritySuper Rare Card EffectEvasive(Only characters with Evasive can challenge this character.) [You Just Have to See It] [Exert] Name a card, then reveal the top card of your deck. If it's the named card, put that card into your hand and gain 3 lore. Otherwise, put it on the top of your deck.Show More var cardText = document.querySelector(".store-pass-card-text") var showMore = document.querySelector('.store-pass-show-more') function toggleCardText() { if (showMore.innerHTML == 'Show More') { showMore.innerHTML = 'Show Less' cardText.classList.add('store-pass-full-text') } else { showMore.innerHTML = 'Show More' cardText.classList.remove('store-pass-full-text') } } initText() function initText() { if (!checkOverflow(cardText)) return showMore.classList.remove('d-none') } function checkOverflow(el) { var curOverflow = el.style.overflow; if (!curOverflow || curOverflow === "visible") el.style.overflow = "hidden" var isOverflowing = el.clientWidth < el.scrollWidth || el.clientHeight < el.scrollHeight; el.style.overflow = curOverflow; return isOverflowing; }