Stardew Valley Iridium Farming Guide (2023)

");$( "#content-area" ).prepend($addFlag);} }// This function handles animation for the new ToC, which currently includes:// 1. Fading the ToC in and out to prevent it from covering up the Info section in the footer ; function handleTocAnim( $tocBox, winHeight, docHeight, scrollTop ) { // We're going to check if we're near the bottom for an animation to hide the ToC so we don't // cover up the Info section in the footer var bottomBuffer = 384; //px var isNearBottom = scrollTop + winHeight > docHeight - bottomBuffer; // Fetch the value for the animFlag key var tocAnimating = $tocBox.data( "animFlag" ); // If ToC has been hidden by the fade anim, display will be 'none' when // finished animating var tocHidden = $tocBox.css( 'display' ) === 'none'; if( isNearBottom ) { // If we're near the bottom, and the ToC is not animating // and not hidden, then hide it if( !tocAnimating && !tocHidden ) { $tocBox.data( "animFlag", true ) $tocBox.fadeOut( 400, function() { $tocBox.data( "animFlag", false ); }); } } else { // If we're not near the bottom, and the ToC is not animating // and hidden, then unhide it if( !tocAnimating && tocHidden ) { $tocBox.data( "animFlag", true ); $tocBox.fadeIn( 400, function() { $tocBox.data( "animFlag", false ); }); } } }// Calculate the available height for the ToC Box ; function calcAvailableHeight( height ) {return height * 80.0 / 100.0;}// This function resizes specific page elements, depending on // window size and whether the ToC is present, to keep things // consistent.// The boolean debug arg enables verbose logging. ; function handleReflow( $, winOuterWidth, winInnerHeight, maxMobileWidth, debug ) {if( debug ) {console.log( "Checking if page layout should be reflowed..." );}// We want to reflow the layout whether or not we have the TOC, // with the hasTOC bool as a flag for if it exists on the pagevar tocFlag = $("#content-side");var hasToC = true; // FORCE HAS TOC, DEPLOYING SITEWIDE -supersoup// Check number of H2 elements. If <= 3, early returnvar numH2 = $("h2");if( numH2.length <= 3 ) {return;}// Cache varsvar $mainContainer = $("#main-content");var $logoContainer = $(".hgg-logo-space");var $navContainer = $(".hgg-menu-icon");var $contentArea = $("#content-area");// Null-check variablesvar anyNull = $mainContainer.length && $logoContainer.length && $navContainer.length && $contentArea.length;if( !($mainContainer.length) && debug ) {console.log( "$mainContainer null in reflowLayout..." );}if( !($logoContainer.length) && debug ) {console.log( "$logoContainer null in reflowLayout..." );}if( !($navContainer.length) && debug ) {console.log( "$navContainer null in reflowLayout...")}if( !($contentArea.length) && debug ) {console.log( "$contentArea null in reflowLayout..." );} if( debug ) {console.log( "anyNull: " + anyNull );console.log( "hasTOC: " + hasToC );}if( hasToC ) {// The previous process for initializing offsetTopForView didn't play well when// refreshing the page while partially down the post, switching to pulling the // header height for consistency -supersoupvar offsetTopForView = $("header").height() ; //pxif (offsetTopForView === undefined || offsetTopForView < 0) {offsetTopForView = 0;}var $toc = $( ".toc-box" );if( $toc.length > 0 ) {var availableHeight = calcAvailableHeight( winInnerHeight - offsetTopForView );if( debug ) {console.log( "window.innerHeight: " + winInnerHeight );console.log( "availableHeight: " + availableHeight );console.log( "toc[0].scrollHeight: " + $toc[0].scrollHeight );console.log( "toc.height(): " + $toc.height() );}if( $toc.outerHeight() > availableHeight ) {$toc.css( 'height', availableHeight );if( debug ) {console.log( "Setting ToC height to ", availableHeight );}} else {var newHeight = availableHeight < $toc[0].scrollHeight ? availableHeight : $toc[0].scrollHeight;$toc.css( 'height', newHeight );if( debug ) {console.log( "Setting ToC height to ", newHeight );}}/*// Update largest sizevar maxSize = $toc.data( "maxSize" );var outerHeight = $toc.outerHeight;if( maxSize === 0 || maxSize == undefined || maxSize == NaN || maxSize < cssHeight ) {$toc.data( "maxSize", $toc.outerHeight);console.log( "maxSize is now " + $toc.outerHeight );}*/if( $toc.height() < $toc[0].scrollHeight ) {$toc.css( 'overflow-x', 'hidden' );$toc.css( 'overflow-y', 'auto' );}else {$toc.css( 'overflow-x', 'hidden' );$toc.css( 'overflow-y', 'none' );}}if( winOuterWidth >= 1600 ) {$mainContainer.css( "margin-left", "15.95rem" );$logoContainer.css( "margin-left", "-6.1rem" );$navContainer.css( "margin-right", "-8.0rem" );} else if( winOuterWidth < 1600 && winOuterWidth > maxMobileWidth ) {$mainContainer.css( "margin-left", "14.8rem" );$logoContainer.css( "margin-left", "-3.8rem" );$navContainer.css( "margin-right", "-3.8rem" );} else if( winOuterWidth <= maxMobileWidth ) {// Clear applied CSS$mainContainer.css( "margin-left", "0" );$logoContainer.css( "margin-left", "0" );$navContainer.css( "margin-right", "0" );} else {if( debug ) {console.log( "Unhandled window width in reflowLayout() - With ToC" );}}} else {if( winOuterWidth >= 1600 ) {// Don't do anything yet on non-ToC pages} else if( winOuterWidth < 1600 && winOuterWidth > maxMobileWidth ) {$contentArea.css( "margin-left", "0");} else if( winOuterWidth <= maxMobileWidth ) {// Don't do anything yet on non-ToC pages} else {if( debug ) {console.log( "Unhandled window width in reflowLayout() - Without ToC" );}}} }// Handles reflowing content on the page depending on different variables; (function (window, $, undefined) {$.fn.reflowLayout = function() {// Mobile width for reflow, probably want to sync// with max mobile width for the ToCconst MAX_MOBILE_WIDTH = 1438;// Should we enable verbose logging for debugging?// SHOULD NOT BE TRUE IN PRODUCTION! -supersoupvar debug = false;handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );$(window).on( 'load', function () {handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );});// For reflowing when browser size changes$(window).on( 'resize', function () {handleReflow( $, window.outerWidth, window.innerHeight, MAX_MOBILE_WIDTH, debug );});/*$(window).on( 'scroll', function () {var $toc = $( ".toc-box" );if( $toc.length === 0 )return;console.log( "availableHeight: " + calcAvailableHeight( window.innerHeight ) );console.log( "toc[0].scrollHeight: " + $toc[0].scrollHeight );console.log( "toc.outerHeight(): " + $toc.outerHeight() );});*/};})(this, jQuery);// Transform guide content by visually organizing it into cards ; (function(window, $, undefined) { $.fn.cardify = function() { var $contentBody = $("#content-body"); if($contentBody === 0) { return; } var $contentBodyChildren = $contentBody.children(); var $h2s = $contentBody.children("h2"); console.log("H2 children of #content-body: " + $h2s.length); if($h2s.length === 0) { return; } for(var i = 0; i < $h2s.length; i++) { var $array = $contentBodyChildren.nextUntil("h2"); $array.each( function(index) { console.log("Element " + index + ": " + $(this).html()); }); // console.log("Card " + i + ":" + $contentBodyChildren.nextUntil("h2").html()); } } }(this, jQuery));// Create the top level TOC before the first heading // The boolean debug arg enables verbose logging. ; function createTopLevelTOC( $, debug ) {var $contentBody = $("#content-body");if( $contentBody === 0 ) {return;}var headingsToFind = ["h2", "h3"]; var $headings = $contentBody.find(headingsToFind.join(","));if( debug ) {console.log(`Headings found: ${$headings.length}`);}if( $headings.length === 0 ) {return;}var tocContainer = document.createElement("div");tocContainer.id="top_toc_container";tocContainer.classList.add("top_toc_container");var tocTitle = document.createElement("p");tocTitle.classList.add("top_toc_title");tocTitle.innerHTML = "Table of Contents";tocContainer.append(tocTitle);var tocList = document.createElement("ul");tocList.classList.add("top_toc_list");let h2Count = 1;let h3Count = 1;for( let i = 0; i < $headings.length; i++ ) {var item = document.createElement("li");var itemTagName = $headings[i].tagName;var tagIsH3 = itemTagName === "H3";if ( debug ) {console.log(`Item ${i} tagName: ${itemTagName}`);}var count = i+1;if( tagIsH3 ) {item.classList.add("top_toc_item_h3");count = h3Count;h3Count++;}else {item.classList.add("top_toc_item_h2");count = h2Count;h3Count = 1; // Reset h3 counth2Count++;}var innerText = `${tagIsH3 ? " - " : ""} ${$headings[i].innerText}`;item.innerHTML =`${innerText}`;tocList.append(item);}tocContainer.append(tocList);var $topHeading = $headings[0];$topHeading.before(tocContainer);if( debug ) {console.log("Successfully added top level ToC");}}// The main function for creating, populating, and managing the new ToC ; (function (window, $, undefined) { $.fn.createTOC = function (settings) {const MAX_MOBILE_WIDTH = 1438;// Before anything else, if this is a post in a Category that we // specifically want to force the ToC on, let's handle that// THIS IS NO LONGER NEEDED, as we're pushing ToC sitewide -supersoup// handleForceToC( $ );// We want to create the inline top level ToC if we're not generating // the sidebar tocif ( $(window).width() <= MAX_MOBILE_WIDTH ) {createTopLevelTOC( $, false );}// For now, we only want to add the new ToC to manually flagged posts.// The post is flagged with the presence of a

// contained within the content of the post. Originally, this div was being used// to wrap the ToC, but I (supersoup) am going to move the ToC out to a new div.// So, the first thing we want to do is test for this div, early return if not // found, or remove it and recreate a #content-side div elsewhere if it is found.var tocFlag = $("#content-side");var hasToC = !(tocFlag.length === 0);// If #content-side element is foundif( hasToC ) {// Get rid of tosFlag #content-side elementtocFlag.remove();}// Check number of H2 and H3 elements. If <= 3, early returnvar numH2 = $("h2");var numH3 = $("h3");if( numH2.length + numH3.length <= 3 ) {return;}// Proceed with .CreateTOC() var option = $.extend({ title: "hgg-toc", insert: "body", }, settings); var ACTIVE_CLASS = 'active'; var list = ["h2", "h3"]; var $headings = this.find(list.join(",")); var tocBox = document.createElement("ul"); var $tocBox = $(tocBox); tocBox.className = "toc-box"; var idList = []; $headings.map(function (i, head) { var nodeName = head.nodeName; var id = 'toc_' + i + '_' + nodeName; head.id = id; idList.push(id); var row = document.createElement("li"); row.className = 'toc-item toc-' + nodeName; var link = document.createElement('a'); link.innerText = head.innerText; link.className = 'toc-item-link'; link.href = '#' + id; row.appendChild(link); tocBox.appendChild(row); }); // Control the takeover of the highlighted elements var isTakeOverByClick = false; // Event delegate, add click ,Highlight the currently clicked item $tocBox.on("click", ".toc-item", function (ev) { // Set as true ,Represents the click event to take over the control of the highlighted element isTakeOverByClick = true; var $item = $(this); var $itemSiblings = $item.siblings(); $itemSiblings.removeClass(ACTIVE_CLASS); $item.addClass(ACTIVE_CLASS); });// Recreate #content-side element in new locationvar $tocDiv = $("

");$( "#content-area" ).prepend($tocDiv); // Want it to be the first subdiv of #content-areavar headBox = document.createElement("div");headBox.className = "toc-titler";headBox.innerHTML = option.title;var wrapBox = document.createElement("div");wrapBox.className = "wrap-toc";wrapBox.appendChild(headBox);wrapBox.appendChild(tocBox);// If on mobile, set sidebar hiddenif( $(window).width() <= MAX_MOBILE_WIDTH ) {wrapBox.style.display = 'none';} else {wrapBox.style.display = null;}var $insertBox = $(option.insert);var $helperBox = $("

");$helperBox.append(wrapBox);$insertBox.prepend($helperBox);// The style of the storage container boxvar CACHE_WIDTH = $insertBox.css('width');var CACHE_PADDING_TOP = $insertBox.css('paddingTop');var CACHE_PADDING_RIGHT = $insertBox.css('paddingRight');var CACHE_PADDING_BOTTOM = $insertBox.css('paddingBottom');var CACHE_PADDING_LEFT = $insertBox.css('paddingLeft');var CACHE_MARGIN_TOP = $insertBox.css('marginTop'); // var scrollTop = $('html,body').scrollTop(); // var offsetTop = $insertBox.offset().top; // var marginTop = parseInt($insertBox.css('marginTop')); // var offsetTopForView = offsetTop - scrollTop - marginTop; // For initialization on load$(window).on( 'load', function () {initTocAnimData( $insertBox );}); // Rolling ceiling $(window).scroll(function () {// The previous process for initializing offsetTopForView didn't play well when// refreshing the page while partially down the post, switching to pulling the // main-header height for consistency -supersoupvar offsetTopForView = $(".hgg-top-nav").height() ; //px// IE6/7/8: // For pages without doctype declaration, document.body.scrollTop can be used to get the height of scrollTop; // For pages with doctype declaration, document.documentElement.scrollTop can be used;// Safari: // Safari is special, it has its own function to get scrollTop: window.pageYOffset;// Firefox: // Relatively standard browsers such as Firefox can save more worry, just use document.documentElement.scrollTop;var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; // Scroll highlight // Only when the click event cancels the control of the highlighted element, the scroll event can have the control of the highlighted element !isTakeOverByClick && $.each(idList, function (index, id) { var $head = $('#' + id); var $item = $('[href="#' + id + '"]').parent(); var $itemSiblings = $item.siblings();var offsetBuffer = 64; // px, we want the class swap to trigger slightly before so we show an accurate active element// when zooming to a specific element var offsetTopHead = $head.offset().top - offsetBuffer; var isActived = $item.hasClass(ACTIVE_CLASS); if (scrollTop >= offsetTopHead) { $itemSiblings.removeClass(ACTIVE_CLASS); !isActived && $item.addClass(ACTIVE_CLASS); } else { $item.removeClass(ACTIVE_CLASS); } }); // Set to false, which means that the click event will cancel the control of the highlighted element isTakeOverByClick = false;// Handle animation for the ToChandleTocAnim( $insertBox, $(window).height(), $(document).height(), scrollTop );// Handle any changes to ToC CSS on scrollvar isFixed = $helperBox.css("position") === "fixed"; if (scrollTop >= offsetTopForView) {if (isFixed) return;$tocBox.css({overflow: 'auto',padding: 0,});$helperBox.css({position: 'fixed',top: CACHE_MARGIN_TOP,width: CACHE_WIDTH,paddingTop: CACHE_PADDING_TOP,paddingRight: CACHE_PADDING_RIGHT,paddingBottom: CACHE_PADDING_BOTTOM,paddingLeft: CACHE_PADDING_LEFT,backgroundColor: $tocBox.css('backgroundColor')});} else {if (!isFixed) return;$helperBox.css({position: 'static',padding: 0});$tocBox.css({overflow: 'auto',paddingTop: CACHE_PADDING_TOP,paddingRight: CACHE_PADDING_RIGHT,paddingBottom: CACHE_PADDING_BOTTOM,paddingLeft: CACHE_PADDING_LEFT,});} }); };}(this, jQuery));});

by Ethan Erekson | Last Updated: Aug 23, 2022

(Video) How To Farm Iridium Ore In Stardew Valley | Easy Method

Stardew Valley Iridium Farming Guide (1)

Image: ConcernedApe via HGG / Ethan Erekson

Iridium is one of the most coveted resources in Stardew Valley for plenty of good reasons. It’s a key ingredient in several top items and the final tool upgrades. You’ll also need it to build structures and complete quests that are necessary for 100% Perfection. Here’s some of the many ways of farming iridium in Stardew Valley, so you can have this coveted resource as soon as possible.

Let’s get started!

Iridium Farming in the Mines

Stardew Valley Iridium Farming Guide (2)

Early on in the Stardew Valley, there aren’t a ton of options for farming iridium. It’s a fairly rare resource, after all. However, once you reach Level 80 in the mines, you’ll unlock a couple reliable methods for getting iridium.

Magma and Omni Geodes

Stardew Valley Iridium Farming Guide (3)

After Level 80, you reach the lava/purple earth section of the mines, where you can find Magma Geodes inside of rocks. These are one of the geode types that can have iridium ore inside. While the other type, Omni Geodes, can be found as early as Level 21, they’re rarer and therefore less reliable. Upon reaching Level 81, all the geodes you find have a chance of producing iridium.

Just head down to the mines and break some rocks. Once you get some geodes, head over to Clint’s blacksmith shop and get them opened. Alternatively, you can use a Geode Crusher if you’ve completed Clint’s Special Order, “Cave Patrol.” Magma and Omni Geodes each have a 1 in 20 chance of procuring iridium, so you’ll need a decent number. You better get mining!

Shadow Shamans and Shadow Brutes

Stardew Valley Iridium Farming Guide (4)

The other thing that shows up in the mines after Level 80 are Shadow Shamans and Shadow Brutes, two void spirit monsters that have an 0.2% chance of dropping iridium bars. Sure, it’s a pretty low drop rate. Though, when your options are limited, you might as well give it a shot.

(Video) Farming Iridium Ore in Stardew Valley - Efficient Easy Guide

Iridium Farming on the Farm

Stardew Valley Iridium Farming Guide (5)

Later on in the game, a couple other options open up, and you can start finding iridium on your farm! Many of these methods can take some time and effort, but it can definitely be worthwhile once you get there. Here’s how to farm iridium on your farm in Stardew Valley.

Hilltop Farm

Stardew Valley Iridium Farming Guide (6)

If you chose the Hilltop or Four Corners Farm, then you’re in luck! Iridium and Magma Geode Nodes can show up on your farm. All you have to do is level up the Mining Skill to Level 10. It can certainly take some time, but once you do, you can get iridium without having to put your life on the line.

Super Sea Cucumbers

Stardew Valley Iridium Farming Guide (7)

Another way to farm iridium on your farm is with fish ponds. Once you fish up a Super Cucumber, toss it in and complete any quests they give you so you can get their population up to nine. At this point, Super Cucumbers have a 5% chance of producing iridium ore each day!

To increase those odds, you can split them up into multiple fish ponds. Once all those ponds have a population of at least nine, each has a chance of producing iridium, making it more likely you’ll get some that day.

Statues of Endless Fortune and Perfection

Stardew Valley Iridium Farming Guide (8)

Of course, if you want the most reliable way of farming iridium in Stardew Valley, you’ll have to pay a hefty price. The Statue of Endless Fortune has a 25% chance of producing an iridium bar each day, but if you want to get it, you’ll have to first unlock the Casino. And once you do, each statue will cost you 1,000,000g. You’ll need some serious cash if you want to pursue this method. However, if you’re determined, you can check out our guide on making money in Stardew Valley to help you out.

Another statue that’s just as, if not more, reliable at producing iridium is the Statue of Perfection. It produces 2–8 iridium ore each day. However, to get this statue, you’ll need to reach 100% Perfection first. As such, it’s probably better to rely on other iridium farming methods in the meantime.

Iridium Farming in the Quarry

Stardew Valley Iridium Farming Guide (9)

A great place to farm iridium in Stardew Valley is the Quarry, a location that you unlock after repairing the bridge. This can be done by completing the Crafts Room bundles in the Community Center or by paying 25,000g to have it done through the Joja Community Development Form. The Quarry is one of the few locations you can find Iridium Nodes and Mystic Stones, which are both sources of iridium ore. On top of that, they both have a chance of containing prismatic shards, which is pretty nice. This is definitely one of the more accessible places to farm iridium in Stardew Valley, and there’s no monsters to be found! You can also use bombs to speed up the process and clear out the quarry in minutes.

Iridium Farming in Skull Cavern

Stardew Valley Iridium Farming Guide (10)

One of the best locations for iridium farming in Stardew Valley is Skull Cavern. Skull Cavern is located in the northwest area of the Desert, and it can be unlocked after reaching Level 120 of the Mines. Making your way through Skull Cavern is dangerous and difficult, so you’ll want to have your best equipment on hand. As for what weapons to go with, you won’t want anything less than a Lava Katana, as the enemies in Skull Cavern are particularly challenging. Fortunately, fortune awaits, and the rewards are definitely worth the risk.

(Video) The Best Way To Farm Iridium Ore In Stardew Valley

Staircases and Mega Bombs

Stardew Valley Iridium Farming Guide (11)

The chance of finding iridium ore increases the further down you go, so you’ll want to make your descent as quickly as possible. Some of the best ways to do this are with staircases and mega bombs. Staircases are an item that’s crafted from 99 stone, and they let you move down to the next level. If you need extra stone, you can purchase it from Robin. Mega bombs, on the other hand, let you destroy tons of rocks and minerals at once so you can quickly find ladders or shafts so you can make your descent. You can craft mega bombs or buy them from the Dwarf. With these items, you can descend quickly and have plenty of iridium ore veins to farm from.

Monster Drops

Stardew Valley Iridium Farming Guide (12)

Of course, finding Iridium Nodes isn’t the only way to farm iridium in Skull Cavern. You can also hunt down monsters, as there are several that drop iridium ore, even if you’re on the upper levels. Purple Slimes have a chance of dropping iridium, and they can be found all throughout Skull Cavern. If you get past Level 26, then you can start finding Iridium Crabs, which are disguised as Iridium Nodes. They also drop iridium upon defeat.

Though if you want the best chances at getting iridium, then you’ll need to head down past Level 50. Once you get to this point, Iridium Bats start to show up, and they regularly drop iridium ore. They even have a chance of dropping iridium bars! So if you find yourself in need of iridium, then you better get down there as soon as possible.

Join the High Ground

We hope you found our article on making money inStardew Valleyinformative! Feel free to leave any comments and questions below, and be sure to subscribe to our newsletter so you won’t miss any of ourStardew Valleycontent.

Happy gaming!

Related Reading

Best Crops for the Greenhouse

How to Make Money

(Video) The Easiest Way to Farm IRIDIUM ORES in 2022 | Stardew Valley

Best Professions for Each Skill

Best Spring Crops to Plant

(Video) How to SKULL CAVERN in Less Than 7 Minutes (Stardew Valley Tutorial)
" );})(jQuery);});

Submit a Comment

FAQs

What is the easiest way to get iridium in Stardew Valley? ›

Skull Cavern. Skull Cavern is the primary place where players are going to find Iridium Ore. Every 10 floors, the rate at which Iridium Nodes spawn goes up, making reaching the later floors of the cavern more than worth the time.

Can I put iridium in Crystalarium? ›

No. The crystalarium clones geode minerals and gemstones (except for prismatic shard). Neither iridium ore nor iridium bars can be cloned.

How do you duplicate Iridium bars in Stardew Valley? ›

Smelting. Iridium Ore can be smelted in a Furnace to create an Iridium Bar. The smelting requires 5 iridium ore and 1 Coal and takes 8 in-game hours.

What floor does iridium spawn? ›

Locations. 300–1,000g. The Mines: A fairly reliable source of the ore is through Magma and Omni Geodes on lower mine levels. These can be obtained frequently by mining all rocks on mine levels 115-119.

Can you pan for iridium in Stardew? ›

On Stardew Valley's Ginger Island, players can also find the Fossilized Tail, as well as Taro Tubers, through panning.
...
How to Pan For Ore in Stardew Valley.
OrePercentage Chance
Iridium1%
3 more rows
Jul 28, 2022

Does Clint sell iridium? ›

One Iridium Bar can also be received as a gift from Clint at the Feast of the Winter Star. Two to three Iridium Bars may occasionally be found in treasure rooms in the Skull Cavern.
...
Iridium Bar.
Sell Prices
BaseBlacksmith (+50%)
1,000g1,500g
Jan 7, 2023

Is there an iridium scythe in Stardew Valley? ›

The Scythe is a tool used to cut grass, weeds, and young trees, and is also required for harvesting certain crops (i.e., Amaranth, Kale, Wheat). It is in the player's inventory at the start of the game.
...
Scythe.
Tools
FishingTraining Rod • Bamboo Pole • Fiberglass Rod • Iridium Rod • Crab Pot
2 more rows
Nov 8, 2021

Which tool to make iridium first? ›

Iridium is obtainable only after you encounter copper, iron, and gold. Each material functions as a prerequisite for the next: you can only mine Iridium ores with a golden pickaxe, or gold ores with a steel one, and so on. If you have been playing Stardew Valley for a while, you know this mine has a 120 levels.

How do you grow iridium crops? ›

Note that iridium quality is possible only with Deluxe Fertilizer. Increasing Farming Skill also increases the chance to harvest a quality crop. If a Seed Maker turns a higher-quality crop into seeds, the seeds are no more likely to produce higher-quality crops when grown and harvested.

What level of Skull Cavern has iridium? ›

A chance to split into smaller Slimes when killed. Big Slimes are purple in the Skull Cavern. Can drop Iridium Ore and Iridium Bars. Only appears on floors 20 and 40; flies.

Where is the most iridium found? ›

Iridium is found in its pure native form and in osmiridium, a natural alloy of iridium and osmium. Iridium is mined from sulfide layers in mafic igneous rocks where it is present with other platinum-group elements. Most iridium is mined in Canada, Russia and South Africa.

Is it worth to buy iridium rod Stardew? ›

Is it worth it's price? Yes. You'll need the lures (mostly the Trap Lure) in order to catch the really hard fish, like the Legend. Yes, because Trap Bobber can't be equipped on fiberglass or bamboo.

Can you transmute gold to iridium Stardew Valley? ›

No, you'll have to farm them specifically. Look for the statue of perfection. You'll got an endless supply of iridium.

What does removing glittering boulder do? ›

The Glittering Boulder is a massive boulder in Stardew Valley which cuts off the main mining area from the rest of the village. By removing the boulder you will unlock the ability to pan for minerals in every stream around the village.

Who produces the most iridium? ›

World iridium supply is currently dominated by South Africa, as a by-product of platinum and palladium production.

Can you craft iridium Stardew Valley? ›

By itself, Iridium Ore's raw form can also be used to craft the Deluxe Scarecrow and the Warp Totem: Desert. Both of these items have high utility, but players are better off investing their Iridium Ore into the recipes using Iridium Bar in Stardew Valley.

Can you find iridium in the mines? ›

After you complete the Crafts Room in the Community Center, the Quarry will unlock East of the Mines. There's a chance to find small amounts of Iridium here. If you can get a Fish Pond and put Super Cucumbers in it, it'll start to generate Iridium every few days.

What is the point of the Golden scythe Stardew? ›

The Golden Scythe has the following benefits: Its radius is larger than the standard Scythe and it is more likely to cut all grass in its radius. 75% chance per swipe to harvest hay from grass, up from 50%. Inflicts 13 damage, up from 1-3.

What's the point of the golden scythe? ›

The golden scythe is not only a farming tool, but a combat tool as well. It inflicts more damage to the monsters the player runs across. This can help while going through the mine or Skull Cavern in the desert. It provides 13 damage to enemies, more damage than a normal scythe.

Does Krobus sell iridium? ›

The Iridium Krobus is a decorative piece of furniture that can be obtained by fishing in the ocean from the southernmost point of Cindersap Forest near the entrance to The Sewers.
...
Iridium Krobus
Sell Price:Cannot be sold
4 more rows

How do you cheat on iridium Stardew Valley? ›

Spawn Using Animal Name

To spawn this item using an animal's name, visit Marnie's Ranch, speak to Marnie and purchase an animal (we recommend a chicken as it is cheapest). Name the animal [337] and press OK. You will then receive the iridium bar item.

Does anyone sell iridium Stardew? ›

Two to three Iridium Bars may occasionally be found in treasure rooms in the Skull Cavern. The Statue Of Endless Fortune has a 25% chance to produce one daily, if it is not a villager's birthday. 1,500g with the Blacksmith Profession.
...
Iridium Bar.
Sell Prices
BaseBlacksmith (+50%)
1,000g1,500g
Jan 7, 2023

How do you get grandpa's shrine points? ›

Likewise, marriage with both house upgrades will grant a point toward Grandpa's evaluation. Friendship levels with various villagers and the player's pet will also grant points.

Can you cheat on your spouse in Stardew Valley? ›

As off build 1.06 you CAN give all "dateable's" the bouquet and get them to 10 hearts for all cut scenes, as there is NO cheating mechanic that I have found. Doing this will make your spouse jealous though and you will have a chance to lose 30 friendship points for each gift you give the "dateables".

What level should I farm iridium Stardew? ›

Iridium ore in the Skull Cavern in the Desert becomes more common the deeper you go. It should become a regular drop around level 70.

Can I buy iridium ore from Clint? ›

Clint sells iridium ore at extortionate prices.

Videos

1. Last Stardew Valley Skull Cavern Guide You Will Ever Need
(ezlilyy)
2. Stardew Valley But Finding Iridium Ore Is Easy
(ezlilyy)
3. How to EASILY Farm the Rarest Resources In Stardew Valley
(ezlilyy)
4. Stardew Valley - BEST Iridium Farm Run EVER! OVER 2,000 IRIDIUM IN A DAY! Skull Dungeon Layer 300+
(Verlisify)
5. How I Get 1,000 Iridium In a Single Day l Stardew Valley
(Seanie Dew)
6. Stardew Valley Iridium Guide / Tipps und Tricks (336 Iridium/skull Lvl 158)
(Smix)
Top Articles
Latest Posts
Article information

Author: Gregorio Kreiger

Last Updated: 06/11/2023

Views: 6003

Rating: 4.7 / 5 (77 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Gregorio Kreiger

Birthday: 1994-12-18

Address: 89212 Tracey Ramp, Sunside, MT 08453-0951

Phone: +9014805370218

Job: Customer Designer

Hobby: Mountain biking, Orienteering, Hiking, Sewing, Backpacking, Mushroom hunting, Backpacking

Introduction: My name is Gregorio Kreiger, I am a tender, brainy, enthusiastic, combative, agreeable, gentle, gentle person who loves writing and wants to share my knowledge and understanding with you.