5 materials to farm for Albedo before Genshin Impact reruns his banner

May 2024 ยท 5 minute read

Genshin Impact version 2.2 will reach its second half in 10 days, and version 2.3 will be followed after that. Lots of speculation is gathering in the community, especially regarding the banner in version 2.3.

The upcoming new Geo characters, Arataki Itto and Gorou, have a high chance to appear in the next version as five and four-star characters, respectively. However, this leaves another five-star character rumored to be Albedo, a Geo character first released in version 1.2.

This article will reveal the materials players can farm for Albedo before his rerun banner comes out in Genshin Impact.

5 materials for Albedo's ascension in Genshin Impact

1) Basalt Pillar

Basalt Pillar can be obtained from Geo Hypostasis (Image via Genshin Impact)

Albedo needs a total of 46 Basalt Pillars to ascend to level 90. This material can be obtained by fighting the Geo Hypostasis in Guyun Stone Forest, Liyue. Other possible rewards that can be dropped when claiming the Trounce Blossom using Resin are Prithiva Topaz Sliver, Fragment, Chunk, and Gemstone.

2) Cecilia

Players can farm Cecilia on Starsnatch Cliff (Image via Genshin Impact)

The next material is one of the local specialties in Mondstadt. Albedo needs 168 Cecilia to ascend to the highest level. This flower can only be collected in the wild on Starsnatch Cliff.

Plant Cecilia in Serenitea Pot (Image via Genshin Impact)

When farming Cecilia in the open world, it is recommended for players to equip the Seed Dispensary gadget. In this way, one can get the flower and the seed at the same time. The seed can then be planted in the Serenitea Pot and harvested when fully grown.

3) Divining/Sealed/Forbidden Cursed Scroll

Defeat Samachurls for scrolls materials (Image via Genshin Impact)

Albedo used the scrolls for both ascension and talent materials. He needs the following number of scrolls to upgrade his ascension and talent levels to the maximum:

Ascension, from level 1 to 90:

All 3 Talents, from level 1 to 10:

Divining, Sealed, and Forbidden Cursed Scroll are the rewards one will get after defeating Samachurl. This enemy can be found in nearly every corner of Teyvat, so players won't have a hard time finding it.

Gamers can also search for Samachurl using the Adventurer Handbook and click on the navigate button. The game will then lead players to Samachurl in every region possible.

4) Teachings/Guide/Philosophies of Ballad

Forsaken Rift is located south of Springvale, Mondstadt (Image via Genshin Impact)

For the talent level-up materials, Albedo needs 9 Teachings, 63 Guides, and 114 Philosophies of Ballad. These items can be obtained by entering the Forsaken Rift domain in Mondstadt. Furthermore, the Ballad talent level-up materials are only available on Wednesday, Saturday, and Sunday.

5) Tusk of Monoceros Caeli

Defeat Tartaglia to obtain the material (Image via Genshin Impact)

Gamers who wish to upgrade Albedo's talent above level 6 will need the Tusk of Monoceros Caeli from the 'Enter the Golden House' domain.

Albedo needs a total of 18 Tusk of Monoceros Caeli to upgrade all of his talents to level 10. Another method to obtain this material is by crafting it on the crafting bench using Dream Solvent, and either a Shards of Foul Legacy or a Shadow of the Warrior.

While the return of the Albedo banner in the next Genshin Impact version is merely speculation, players who have the time and resin can farm for his materials early to avoid rushing in the future.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJobGalkamys7XApapmnpGnum6ty5ucnaddnLKvv8eipWahnaWupMCMq5yrrZ6oeqOtzaecqw%3D%3D