All collectibles in Star Wars Jedi: Survivor (Penitent Chambers

Posted by Delta Gatti on Thursday, April 25, 2024

Star Wars Jedi: Survivor has six planets, with Jedha being the second largest, harboring over 150 collectibles you can hunt down. There are many different regions that you have to explore on the planet, and Penitent Chambers is one of them. It is one of the smaller areas in the Ancient Ruins region of Jedha, and you will have access to it after making your way through Monastery Walls.

The Ancient Ruins region of Jedha in Star Wars Jedi: Survivor has a total of 34 collectibles distributed amongst three regions. Out of which, the Penitent Chambers has only five. And these five collectibles comprise:

  • Two chests
  • One essence
  • Two treasures

Here are places where the collectibles of Penitent Chambers are located in Star Wars Jedi: Survivor

Penitent Chamber Chests

There are two chests that can be found in Penitent Chambers of Jedha:

Chest 1 (Wanderer Material)

Chest #1 Location in Penitent Chambers (via RESPAWN)

You must climb up the column before you after scaling the first wall face while following Merrin. Once you open the chest, you will be awarded a Wanderer Material. This is your first collectible from the Penitent Region of Jedha in Star Wars Jedi: Survivor.

Chest 2 (Nocular Body)

Chest #2 Location in Penitent Chambers (via RESPAWN)

As you reach the end of the Penitent Chambers, you will have to grapple onto a wall and climb the first section that will lead you to a ledge. Once you are here, you will have to turn right and double-back, where you will find another wall grapple.

As you follow this path and turn right, you will reach your second chest towards the end of this path. You will receive a Nocular Body as your reward for opening the chest.

Penitent Chamber Essences

Force Essence Location in Penitent Chambers (via RESPAWN)

You will have to go along the wall-run path opposite the Second chest to reach the location of the Force Essence. This will be your third collectible from this region of Jedha in Star Wars Jedi: Survivor.

Penitent Chamber Treasures

Like your chests, there are two treasures in this region of Jedha in Star Wars Jedi: Survivor. Both are relatively easy to obtain:

Treasure 1 (Jedha Scroll 1)

Treasure #1 Location in Penitent Chambers (via RESPAWN)

After meeting and having a duel with Merrin, you will find yourself near a ledge. You will have to reach the top of this ledge to find your first treasure, which is a Jedha Scroll.

Treasure 2 (Jedha Scroll 2)

Treasure #2 Location in Penitent Chambers (via RESPAWN)

Once you have collected your second chest that gave you the Nocular Bbody, you must turn back and move towards the Stormtrooper. You will have to defeat this enemy, and in the same corridor, you will encounter a Scavenger Droid.

You will get your second treasure from the Droid after defeating it. This will also be the last collectible you can get in the Penitent Chambers of Jedha in Star Wars Jedi: Survivor.

If you like to be a perfectionist, then you must want to have a 100% completion rating in your run of Star Wars Jedi: Survivor. For that, acquiring all the collectibles is very important, and collecting these five will take you one step closer.

Struggling in a galaxy far far away? Our guides make it easy. May the force be with you!

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJomKWkXZi8rbjEnKuimpyawG6%2F05qpZq%2BRp8ButsSdoGarpafDqsLOq2SpnZ6ewaa602aaoZmdl7Kzv4yjnJ2gkQ%3D%3D