Fastest Nilou ascension materials farming guide

The Genshin Impact 3.1 update has finally entered its second phase, and gamers have an opportunity to summon Nilou. She has been out for a few days, and many players might have already got their hands on her. These individuals will want to start farming ascension materials to get her to level 90 before they

The Genshin Impact 3.1 update has finally entered its second phase, and gamers have an opportunity to summon Nilou. She has been out for a few days, and many players might have already got their hands on her. These individuals will want to start farming ascension materials to get her to level 90 before they start increasing her talent levels.

The most important resource for her ascension will be farming 168 Padisarahs, a local specialty exclusively found in the Sumeru rainforest. 81 Padisarah can be harvested in a single day, and players will have to wait 48 hours for them to respawn. This article will cover all spawn locations of Padisarah in Genshin Impact, including the fastest farming routes for the material.

Genshin Impact 3.1: Location and route to farm Padisarah for Nilou's ascension

Sumeru updates have introduced a large variety of local specialties, and Padisarah is one of them. It is used by Nilou as an ascension material.

Here is a list of locations where the Padisarahs spawn abundantly:

  • Vanarana = 32 Padisarahs
  • Alcazarzaray = 11 Padisarahs
  • Sumeru City = 11 Padisarahs
  • Vissudha Field = Three Padisarahs
  • Pardis Dhyai = 12 Padisrahs

Keep in mind that putting Tighnari in the party will greatly help pinpoint the spawn location of Padisarah. Given below are some fast and efficient farming routes for the material that were presented by Sora Hosina, a budding content creator.

Vanarana

Players can collect around 32 Padisarahs in Vanarana. Keep in mind that you will have to exit from the dream state of this region to collect these Padisarahs in reality.

Padisarah in Varnara: Route 01 (Image via Genshin Impact)
Padisarah in Varanara: Route 02 (Image via Genshin Impact)
Padisarah in Varanara: Route 3 (Image via Genshin Impact)

Follow all three routes to harvest all the Padisarahs present in the Varanara area.

Alcazarzaray

Padisarah in Alcazarzaray: Route 04 (Image via Genshin Impact)

11 Padisarahs can be harvested in the Alcazarzaray area. You can start from the southeast teleport waypoint and follow the farming route, as shown in the picture above to collect them.

Sumeru City

Padisarah in Sumeru City: Route 05 (Image via Genshin Impact)

Teleport to the waypoint southeast of Sumeru City and follow the route marked in the picture above. A total of 11 Padisarahs can be collected here. You can choose to either follow the entire route on foot or use a teleport waypoint to reach the spawn locations a tad faster.

Vissudha Field

Padisarah in Vissudha Fields: Route 06 (Image via HoYoverse)

Go to the teleport waypoint of Vissudha Field to collect three Padisarahs. Head north along the farming route shown in the image above.

Pardis Dhyai

Padisarah in Pardis Dhyai: Route 07 (Image via HoYoverse)

Lastly, you will have to harvest all the remaining Padisarahs (around 12) in Pardis Dhyai. Teleport to the east waypoint and follow the farming route shown in the picture above.

Players can also buy Padisarahs from an NPC named Jut who can be spotted in the Grand Bazaar area of Sumeru City. With each flower costing around 1,000 Mora, gamers will need to spend 5,000 Mora to buy five Padisarahs from him.

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": 1261126, "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(1261126); 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(1261126) >= 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(1261126) .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 }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJonp6mo522r3nIpqeam6RivaKwyKyYq5mYYrmwr8CtoKimo2Kzor%2FTnqqtZZ6eubDBjJqqnJ2eqLawuoymmK2dop6urb%2BMn5irpZmjtG6z1KKbng%3D%3D

 Share!