Kirara is a 4-star character that was introduced in Genshin Impact's 3.7 update. For players preparing to level up, it's essential to know what materials are required to ascend and level up her talents. By referring to this, players can ensure they have everything they need to power up Kirara and ascend her to level 90.
In this guide, we'll look at all the materials required for Kirara's ascension, talent level-up, and weekly drops list. With this information, players can fully maximize Kirara's unique abilities.
Genshin Impact guide to Kirara's Ascension and Talent Level-up materials
1) Evergloom Ring
Kirara will need the Evergloom Ring, a new character ascension material introduced in the Genshin Impact's 3.6 update. Players can fight the new overworld boss called the Iniquitous Baptists, which are located in the Hangeh Afrasuya, near the Gate of Zulqarnain.
Kirara will need 46 Evergloom Rings to ascend to level 90. Since the new boss will drop around 2-3 of these every time, fans will be required to fight it around 16-23 times.
2) Nagadus Emerald
Like all Dendro characters, Kirara will need Nagadus Emerald for ascension. Players will need to collect the following amounts to ascend her to level 90:
- Nagadus Emerald Sliver x1
- Nagadus Emerald Fragment x9
- Nagadus Emerald Chunk x9
- Nagadus Emerald Gemstone x6
Since the Iniquitous Baptists don't drop this, players must defeat Dendro element overworld bosses-Dendro Hypostasis and Jadeplume Terrorshroom.
3) Amakumo Fruit
Kirara will need 168 Amakumo Fruit in Genshin Impact to ascend to level 90. They are a local specialty that can be found on the Seirei Island of Inazuma. Amakumo Fruits grow in groups of two or three on a single stem. They can only be found in the wild on Seirai Island, especially around its namesake Amakumo Peak.
Players can collect roughly 90 Amakumo Fruits in a single day by following this interactive map or any video guide.
4) Common Drops from Specters
Kirara will require a large amount of common resources dropped by specters found across the Inazuma region. These drops are necessary to level up in both ascension and talent. Here's a chart that shows the total amount needed to max up everything:
| Common Drops from Specters | Needed for Ascension | Needed for Talent Levels |
| Spectral Husk | 18 | 18 |
| Spectral Heart | 30 | 66 |
| Spectral Nucleus | 36 | 93 |
Genshin Impact players can also obtain some from the Paimon's bargain shop by exchanging Stardust and Starglitter.
5) Transience Talent Books
Genshin Impact players will need to farm Transience talent books from the Violet Court domain in Inazuma. Remember that these can only be collected from the talent domain on Mondays, Thursdays, and Sundays.
Here is a list of talent books Kirara will require to max out all three talents:
- Teachings of Transience x 9
- Guide to Transience x 63
- Philosophies of Transience x 114
6) Everamber from Apep weekly boss
Lastly, players will need 18 Everamber dropped by Guardian of Apep's Oasis. Keep in mind that players must complete Nahida's Act II Story Quest: Homecoming to unlock this weekly trounce domain in Genshin Impact.
Quick Links
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1470837, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1470837); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1470837) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1470837) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();