published on in today

5 best Minecraft 1.18 Bedrock seeds for cliffs (2022)

At the time of generation, each world in Minecraft is assigned a number, a code that becomes its identity. This number is known as the world's "seed".

With seemingly trillions of different types of seeds available for the game, players can regularly look forward to exploring new structures and biomes.

Minecraft 1.18, or the Caves and Cliffs part 2 update, primarily focuses on a revamp of the mountain and cave generation systems in the game. Six new biomes have also been introduced into the mountains, while Minecraft's cave systems have received their own set of cave biomes and cave types.

This article will talk about the best seeds that showcase the newly developed cliff faces of Minecraft 1.18.

Minecraft 1.18: Top 5 cliff seeds in Bedrock Edition

5) Snowy Mountains With Ocean and Cliff Drop (Seed: -8260484280175327470)

EThis seed contains some magnificent cliff faces (Image via Mojang/ Reddit/u/IvanTh33Terribl)

This seed spawns the player on the cusp of a plains biome and a jagged mountain biome. One can find snow right beside them, with trees and mobs like pigs, goats, and sheep.

However, one of the highlights of this seed is a series of cliffs approximately 50 blocks south of spawn. The cliff leads straight into the ocean, and features a plethora of entrances to the cave system inside the mountain.

4) Seaside Plains Cliffs (Seed: -1381685289420344963)

This seed has an amazing display of cliffs along with two villages (Image via Mojang/Reddit/u/noobductive)

This seed spawns the player within a dense spruce forest. Navigating to the coordinates given below will take the player to a plains biome set on top of a hill. Almost immediately, players will notice a huge hollowed out area in the mountain, which leads to a cave.

The cave goes all the way down to Y level -53. The area is surrounded by tall and intimidating cliff faces that look down upon the player. Two villages can also be found in this area.

3) Lush cliffs and caves (Seed: 816802188)

This seed spawns the player near three biomes, namely the plains, frozen peaks and stony shores biomes. All three lie along a huge cliff overlooking an ocean. Additionally, a lush cave can be found a few blocks to the south-west of spawn.

2) Skinny cliffs (Seed: 9119109508904551153)

This seed has an interesting display on inland cliffs (Image via Mojang/Reddit/u/RihhamDaMan)

This seed spawns the player in an extensive plains biome. The spawn area is surrounded by a long and winding river, that flows all the way out to an ocean.

Towards the immediate east of spawn, players can find a series of cliffs which lead to an opening within the mountain. The cliffs lead down to a cavern with the lowest accessible freefall point being Y level -46.

1) Cliffside Village (Seed: 745794237)

This seed spawns the player in a forest biome. However, one of the best features about this seed is that it showcases almost every Overworld biome around the spawning area.

Players can find a small mushroom biome in the middle of the ocean, where an exposed cavity leads to a lush cave system. Additionally, some frozen mountains can be found going west from spawn, where players can locate and settle down in a beautiful cliffside village.

Bedrock Edition is one of the foremost versions of Minecraft. While similar to Java Edition in many ways, the Bedrock edition includes a number of other versions of Minecraft, including Pocket Edition, Windows 10 edition, and the console versions.

Note: This article is subjective and solely reflects the opinion of the writer.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKWZo7KkvsCfq2htXZeytMCMpqCnnZOnrqfAjGpkanBdl7Klvs6comarlZqxtHnCpaCfnqNif3F%2BkQ%3D%3D