For Biomutant players hoping to upgrade their Klawbar to level 2, they'll need the assistance of a little red friend named Pebble.
Pebble's quest is made available when a player fails to open something with their Old World Klawbar. Once players clear Pebble's quest, they'll have an upgraded Klawbar and will also have a chance at the Batnam-nam.
Per Biomutant's in-game quest text:
Pebble's caught between a rock and a hard place. There's no worse spot to be in, and this time is no exception. He doesn't want to be a pebble in your shoe, but if you'd help find a better spot to climb to and a rope that holds up to the end of the line, he'd be grateful.
Biomutant: Finding Pebble and completing his quest
In Biomutant, Pebble can be found west of Sknapptrutt Outpost for players who need to "Stronken their Klawbar." Pebble has been having issues scaling a cliff and will ask for the player's assistance in finding his way around. Players will also need to secure climbing spots for their little red friend nearby. The climbing spots will be marked with a yellowish tint, making them easier to see.
The first set of climbing marks should be directly behind Pebble. Once players climb those, the second set of marks will be directly ahead, securing the first of three spots.
The next set is on the southeastern face of the mountain, somewhat northwest of the Tree of Life. A dirt path from the village of Snodesburg will lead to the climbing spot. The final spot will be found west of Pingdish 6k and is easy enough to spot.
As long as the player doesn't fall during the climbing action, crossing the yellow climbing spots will check off on the player's quest tracker. A little bit of dexterity is all that's required, and most players should have little to no trouble crossing the rocky expanses. Once all three of the climbing spots have been secured for Pebble, players should return to his location in Knack Hill and upgrade the player's Klawbar to level 2.
Pebble will also ask players to undertake a quest regarding ziplines, but the player will have the Klawbar upgrade they need already. Whether they choose to assist Pebble further is up to them, but deciding to do so will reward the player with the Batnam-nam, a little critter that serves as an improved glider. Biomutant's world is vast, and players can never have enough ways to travel around the map.
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": 837361, "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(837361); 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(837361) >= 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(837361) .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 }); })();