How to find Secret Hollow in Pokemon Legends: Arceus

One of Pokemon Legends: Arceus' hidden locations in the region of Hisui, the Secret Hollow is a hidden location in Alabaster Icelands.

Some trainers in Pokemon Legends: Arceus may have already encountered the area, or may have heard it mentioned pertaining to Request 99: Tricky Treat Strategy. This request entails players taking ten mushroom cakes to the hollow for Mai and her Munchlax.

Regardless of how the trainer decides to get to Secret Hollow, the way to physically get there is more or less the same. However, players will need to be certain they've unlocked the Alabaster Icelands first. But if they're already far enough to receive Request 99, this likely isn't an issue.


Pokemon Legends: Arceus's Secret Hollow can be found north of Icepeak Camp in Alabaster Icelands

For trainers attempting to find the Secret Hollow in Pokemon Legends: Arceus, a good spot to begin the search is at the Icepeak Camp within the Alabaster Icelands. From there, players will want to head north from the camp and cross the river.

👉 For more insights, check out this resource.

As the players progress further, they'll likely spot the massive boulders blocking the hollow from quite a distance away. With that in mind, they'll need a Pokemon to shatter the boulders once they're close enough. However, once the boulders are shattered, players can freely enter the hollow.

The hollow itself is relatively empty in its current state in Pokemon Legends: Arceus. There's definitely a wisp inside which is worth collecting, but otherwise the location tends to just be a hangout spot for Bergmite. This is great in the event that players are attempting to capture one for research or to evolve an Avalugg, but otherwise there isn't much to note.

👉 Discover more in this in-depth guide.

However, entering the hollow with ten mushroom cakes and waiting for Mai will complete a step of Request 99. After players meet Mai in the Secret Hollow, they can return to Jubilife village and meet her for their reward.


More about Secret Hollow

Secret Hollow is one of the few different hidden locations that players can find in Pokemon Legends: Arceus throughout the Hisui region. For all intents and purposes, these locations aren't integral for completing the main story of the game, but they're certainly worth exploring to complete requests or spot certain Pokemon worth catching for the player's Pokedex.

All locations in Pokemon Legends: Arceus help a trainer succeed in their research to some degree, so it doesn't hurt to scope out each area of the Hisui region and ensure that no stone is left unturned. Player's never know what they might find after all.

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