Minecraft Wiki
Register
Advertisement

Sign your posts with ~~~~ and always add new posts at the very bottom after previous sections.

Picture[]

Someone needs to change the picture. As of 12w21b the block has GREEN dots, not RED dots! -- Sanoth 13:52, 25 May 2012 (UTC)

Ultradude makes most of the nice block renders; bug him about it if he doesn't make a new one in the next day or two. -- Orthotope 14:20, 25 May 2012 (UTC)

Spawn[]

Can someone test if these ore's spawn naturally? --Dyon 14:43, 24 May 2012 (UTC)

It should spawn naturally like all other ores, but probably more rarely. - Asterick6 (talk) 19:35, 24 May 2012 (UTC)
I tested this with a lot of tnt. I went through a jungle and a desert but found no emeralds, so i wend under some mountains, and I found some. 68.2.171.84 19:10, 26 May 2012 (UTC)
I found three different emerald veins in a cave, none of them had any more than one ore in them. I'm not sure if the cave was cutting them all off, but I haven't seen any natural veins of more than one ore. –Preceding unsigned comment was added by 24.145.219.111 (Talk) 23:19, 4 June 2012‎ (UTC). Please sign your posts with ~~~~
They are only found in single block deposits. It would be pretty rare to find 2 different ores together. - Asterick6 (talk) 04:36, 6 June 2012 (UTC)
I am pretty sure they are only found in mountains. –Preceding unsigned comment was added by 71.166.52.86 (Talk) 22:02, 13 June 2012‎ (UTC). Please sign your posts with ~~~~
I don't know how rare it is but I was able to find 6 emerald ores in one vein (apparently it's super rare just to find 3 in one vein) - Epickiller6002 (talk) 11:57, 30 April 2020 (UTC)

Needless edit war[]

Rather than that round of a dozen changes and reverts, why didn't the three/four of you sort things out on the talk page, like you're supposed to?? --Simons Mith 22:49, 24 May 2012 (UTC)

There's really not much else to say. It's a bad test and in no way does it prove anything. --Moxxy 00:22, 25 May 2012 (UTC)

Fortune[]

Does enyone know what happens when you mine Emerald Ore with a Fortune pick axe? Does Fortune work on it? –Preceding unsigned comment was added by Jpgar (Talk|Contribs) 00:04, 25 May 2012‎ (UTC). Please sign your posts with ~~~~

fortune does indeed work on them. --IPeer 15:36, 25 May 2012 (UTC)

Emerald Tools, Really?[]

Who made that up. Seriously, that is just ridiculous. –Preceding unsigned comment was added by 68.2.171.84 (Talk) 01:48, 25 May 2012‎ (UTC). Please sign your posts with ~~~~ 68.5.95.91There is no such thing as emerald tools yet. In the new update, there should be emerald tools, and even emerald armor! Hopefully that will hapen!68.5.95.91

Analysis on code to confirm ore rarity[]

The BiomeDecorator, adx as of 12w21b, is unchanged. Here's something that is changed:

aou.java:

import java.util.Random;
public class aou extends ahq
{
    protected aou(int i)
    {
        super(i);
        R = new gf(tc.bR.bU, 6);
    }
    public void a(act act, Random random, int i, int j)
    {
        super.a(act, random, i, j);
        int k = i + random.nextInt(16);
        int l = random.nextInt(28) + 4;
        int i1 = j + random.nextInt(16);
        R.a(act, random, k, l, i1);
    }
    protected oo R;
}

gf is WorldGenMinable, and emerald initializes it with numberOfBlocks 6, the same as lapis. tc.bR is oreEmerald. aou is used for Extreme Hills and Extreme Hills Edge - it is BiomeGenHills. ahq is BiomeGenBase, and the overwritten a method is decorate. Normally, decorate is the following:

   public void decorate(World par1World, Random par2Random, int par3, int par4)
   {
       biomeDecorator.decorate(par1World, par2Random, par3, par4);
   }

That is, the normal generation settings for everything. This ordinary generation occurs once, before any emerald ore is even generated, thus all ores, dirt, etc., already exist. Note that ores normally generate before things such as sand and lakes generate, but after dirt and gravel (and only generate inside smoothstone).

The rest of the code in the overwritten method seems to be a copy of the code from BiomeDecorator's genStandardOre1. In this case, the equivalent call, placed in the BiomeDecorator class, would have been genStandardOre1(1, emeraldGen, 4, 32);. Compare with diamond's genStandardOre1(1, diamondGen, 0, 16);, and you'll see the code is attempting to generate emerald ores the same number of times per chunk as diamond (in other words, once), and instead of falling between layers 0 and 15, generation attempts will fall between 4 and 31.

No other biome generators reference tc.bR, thus the Extreme Hills and Extreme Hills Edge biomes are the only ones to generate emerald at all.


As a summary of all this: for Extreme Hills and Extreme Hills Edge biomes, emerald ore veins will be as common as diamond veins, but they will be spread out across almost twice the area. Also, the veins may actually be more common, because the deepest veins will be at layer 4, while diamond will waste generation attempts trying to generate in the bedrock (and thus failing to generate at all for that chunk). The actual veins are generated with the same size as lapis veins, thus a given vein of emerald will likely be smaller than a given vein of diamond (as is the case for lapis), unless I misunderstand what numberOfBlocks does.

There, now please stop with all of this "25 times rarer" and "40 times rarer" "proven in the code" nonsense. I actually checked the code, and mentioned what parts I checked. For extreme hills and extreme hills edges, this ore is roughly the same rarity as diamond, or perhaps only slightly rarer.

If you want to talk about how rare this ore is because it only appears in two biomes (one of which is only a technical biome), fine. But don't say you checked x chunks, only y of which were the relevent biome, and use that to say how rare it is. The numbers you get from doing that would vary so much based on what part of the world you do it in, and what seed you're on. I could just as easily complain about how rare clay is, if I didn't look in swamp and ocean biomes. --WolfieMario 17:56, 25 May 2012 (UTC)

You are missing the point! The average generated world will have 10x more Diamond Veins than Emerald Veins in it! The average generated Extreme Hills Biome will have a roughly equivalent Veins. Therefore, Emerald is more rare than Diamond. (This isn't taking into account how large the veins are, either.) --redsai
This is incredibly helpful, thank you! :] Verhalthur (talk)(contribs) 18:37, 25 May 2012 (UTC)
Nice. My world analysis (~10,000 chunks, ~1900 of which are extreme hills/edge) agrees with this; in columns that are part of Extreme Hills [Edge] biomes, the chance of finding emerald and diamond ores is just about the same. A small amount can be found in other biomes, probably when a vein starts generating in Extreme Hills Edge and extends out of it. It's somewhat more common in River biomes than others; my guess is that's because they can cut through the middle of an Extreme Hills biome, rather than just border it.
Jeb said there'd be more reasons to go to specific biomes in the future; looks like this is one of them. -- Orthotope 00:40, 26 May 2012 (UTC)

I think that they might spawn under mountains because , in real life, the finest emeralds are from the foothills below the Andes in Columbia. The reason why people say it's 25 times rarer is because its only found in one biome. 68.2.171.84 19:15, 26 May 2012 (UTC)

Not biome specific?[]

I found these Not in the correct biome –Preceding unsigned comment was added by SoaringChris137 (Talk|Contribs) 21:35, 25 May 2012‎ (UTC). Please sign your posts with ~~~~

Can you provide the seed where you found this? And is it anywhere near Extreme Hills or Extreme Hills Edge? I'm examining the generation code, and there's nothing to indicate emeralds can spawn without an Extreme Hills or Extreme Hills Edge biome. In fact, the only thing marked as special for a river biome is the lack of passive mobs. If it's a river cutting through Extreme Hills, it's possible that part of that chunk is Extreme Hills (/Edge). Anyways, I'm looking deeper into the code for river generation now... --WolfieMario 22:45, 25 May 2012 (UTC)
The only references to emerald ore in the code that I've found are for which pick can harvest it, what it drops, the block ID and name, and the class which generates Extreme Hills and Extreme Hills Edge. If that river cuts through Extreme Hills (or Edge), that's the only explanation I can think of, aside from a glitch... Supporting my theory (and the code), here's some counts:
For a large area (sadly, MCEdit did not save how large it was), there were 6946 diamond ores and zero emerald ores. This was a diverse area, including plains, forests, jungles, taigas, tundras, and rivers. For size reference, it was an area containing 1746191 bedrock. Here's a screencap of the area:
http://i1050.photobucket.com/albums/s412/WolfieMario/prettybigcropped.png
Notice the lack of Extreme Hills? I picked another area, containing only Extreme Hills, and it contained 208652 bedrock, 861 diamond ore, and 952 emerald ore.
Another area of Extreme Hills contained 180888 bedrock, 758 diamond ore, and 847 emerald ore.
There's almost 100 more emerald ore than diamond ore in these areas, so it's actually more common than diamond :o
Now, for rivers crossing through Extreme Hills...
2139 bedrock, 10 diamond ore, 9 emerald ore
480 bedrock, 3 diamond ore, 4 emerald ore
Rivers will not contain emerald unless they cross through Extreme Hills, it seems. I suppose it's just a quirk in the terrain generation, but it's reassuring to know that rivers cutting through Extreme Hills do not lower the amount of emerald.
On a related note, I figured out why people kept insisting Jungles generate emerald ore. MCEdit lists both emerald ore and cocoa plants as "Future Block!", and these people must have gotten confused. However, MCEdit will also list the block ID, and only 129 corresponds to emerald ore. --WolfieMario 01:05, 26 May 2012 (UTC)
I also found Emerald Ore in a Desert biome that bordered to an Extreme Hills Edge biome. Here's the screenshot. - Muskar 22:51, 25 June 2012 (UTC)
I see I am not the first person to notice that the extreme hills only thing is wrong. I think I will go ahead and edit this. Espatier (talk) 10:06, 13 July 2014 (UTC)
Note that most of the conversation is from two years ago, back when the feature was still being snapshoted.
I checked the code, and found emerald ore among the biome specific features of Extreme Hills, and not among the standard ores, so it was correct.
--KnightMiner (t|c) 21:25, 13 July 2014 (UTC)

About Silk Touch on this block[]

About Emerald Ore, is it possible to get Emerald Ore by itself by Silk Touch? If it can be dropped by itself, it should be smelted into Emeralds too. Anyone else test this out? I just wanted to know by the way. 99.130.172.234 23:06, 25 May 2012 (UTC)

Indeed, you just will get the Emerald Ore Block --Dyon 09:22, 26 May 2012 (UTC)
Thanks for telling me that! Case closed. 99.130.172.234 11:40, 26 May 2012 (UTC)

Citation?[]

This line from the article, “It was removed by Jeb from extreme hills biomes, because people thought it was the main way to obtain emerald Ore whereas Jeb wanted trading to be it and actually finding the Ore to be a ‘Nice find’,” has absolutely no citations and uses wrong grammar in a few locations. To me, it looks like an addition from the "And now they were removed thanks to multiple people b****ing about it. Way to go guys! >.>” "clan". Someone should probably add either a citation or “citation needed” tag to that. –Preceding unsigned comment was added by 99.25.90.235 (Talk) 19:37, 29 May 2012‎ (UTC). Please sign your posts with ~~~~

Jeb actually said it himself in the tweets cited earlier on the page. However, the line seems to be an unnecessary repetition of information; I'll try putting the info in a more prominent place so people stop adding the same stuff in multiple places (...though honestly, is it too much to ask someone to read the article before they edit it?) --WolfieMario 23:36, 29 May 2012 (UTC)
Oh, it seems like MegaScience took care of it :p --WolfieMario 23:41, 29 May 2012 (UTC)

# of emeralds per ore block dropped?[]

See heading; how many emeralds does an emerald ore block drop when mined with an unenchanted tool? Thanks! –Preceding unsigned comment was added by 4.243.137.143 (Talk) 02:12, 31 May 2012‎ (UTC). Please sign your posts with ~~~~

One, like diamond. Remember, this ore's only meant as a nice find; you're supposed to get emerald by trading. Personally, I would use silk touch to mine any emerald ore I find; even Fortune III would waste it when you consider how cheap emeralds are in exchange for wheat or paper. --WolfieMario 04:34, 31 May 2012 (UTC)

Changes to the emerald ore generator[]

When Jeb re-added emerald ore to the generator, he added it in a different way. Here's the Extreme Hills (and Edge) biome generator class, apb.class as of 12w22a.

   import java.util.Random;
   
   public class apb extends ahw
   {
   
       protected apb(int i)
       {
           super(i);
       }
   
       public void a(acz acz1, Random random, int i, int j)
       {
           super.a(acz1, random, i, j);
           int k = 3 + random.nextInt(6);
           for(int l = 0; l < k; l++)
           {
               int i1 = i + random.nextInt(16);
               int j1 = random.nextInt(28) + 4;
               int k1 = j + random.nextInt(16);
               int l1 = acz1.a(i1, j1, k1);
               if(l1 == tg.t.bX)
                   acz1.d(i1, j1, k1, tg.bR.bX);
           }
   
       }
   }

This is rather simple and no longer uses the standard ore generator. For each chunk, 3-8 times, a random coordinate is selected in the chunk. If that coordinate is stone, it is changed to emerald. This can happen anywhere between layers 4 and 31, inclusive. I'll update the article shortly --WolfieMario 03:30, 1 June 2012 (UTC)

I found an Emerald Ore on Layer 32... on 12w22a... --Dyon 15:48, 2 June 2012 (UTC) ^^ EDIT: I also found a few vines of 2 ore's... I got proof on the layer 32 and the vines of 2 if you want it, tell me --Dyon 15:50, 2 June 2012 (UTC) ^^
"Random.nextInt(28)" returns a number from 0-27 according to Java specifications. Thus, in the code, 4-31 is the actual vertical range possible. Are you sure the block was *on* layer 32? Remember that when you use F3 it shows the coordinates of your eyes, not the coordinates of your feet. Also, are you sure the chunk was generated in 12w22a (i.e. it's a new world, not one that was also used in a previous snapshot)? And I've seen emerald ores generate near each other as well - this is not an actual vein: the generator may randomly select 2 spots that are near each other. In fact, it's even possible for a neat line of 8 emerald ores to appear, or even a circular formation, though that's incredibly unlikely - it's because completely random coordinates are selected, and they just might happen to be near each other. --WolfieMario 19:36, 2 June 2012 (UTC)
It is on 32, when standing on it, it says 33,6 (33,6 - 1,6 = 32). (If I'm right) Also here is a Picture: [1] . And of course did I generated a new world ;) --Dyon 21:05, 2 June 2012 (UTC) ^^
The top of the block is at Y=32, so the block itself is on layer 31. (Layer 0 goes from Y=0 to Y=1, layer n is from Y=n to Y=n+1) Not entirely obvious, but that's the way it works. -- Orthotope 22:12, 2 June 2012 (UTC)
Ah... --Dyon 22:19, 2 June 2012 (UTC) ^^

Emeralds in the real game?[]

When will they be added? Because I seriously can't wait :3 Sorry if dumb question. Sillyskittys 19:33, 2 June 2012 (UTC)

They've already been added in snapshots, and they'll presumably be in Minecraft 1.3 once it's released. --WolfieMario 19:36, 2 June 2012 (UTC)
Oh okay thanks. :3 Sillyskittys 19:37, 2 June 2012 (UTC)

Stolen from Terraria?[]

Obviously this was plagiarized from Terraria, they did it first. 216.195.135.190 21:11, 5 June 2012 (UTC)

zomg and terraria stole it from Link's "rupees"!! ohnoes!
in all seriousness, emeralds in this game act completely different to terraria. hell, why not claim Minecraft stole dirt! Super Mario had dirt! I claim excessive copyright violation! :T --Kizzycocoa 21:27, 5 June 2012 (UTC)
Terraria plagiarized emeralds from Earth. Heck, they even plagiarized the name of their game from Earth - did you know "Terra" is the Greek word for Earth? Seriously, Earth needs some good lawyers; I see copyright infringement all over the place... --WolfieMario 21:59, 5 June 2012 (UTC)
How about a good ol' game of Quake to settle the matter? :P - Asterick6 (talk) 04:38, 6 June 2012 (UTC)
But they stole their name from the natural disaster "earthquake". Cobalt32 02:22, 8 June 2012 (UTC)
/|\ win. drumaboy590 03:49, 8 June 2012 (CST)
OMG minecraft is copyright infringement!1!!1!11!

the name "minecraft" is plagiarizing english's words "mine" and "craft", and is also stealing the identity of sandboxes by being a sandbox game im gonna sue notch since hes still the owner of the game

OH WAIT Minecraft Dungeons Flames of the Nether (talk) 22:18, 14 March 2021 (UTC)

Do emerald ore veins spawn in old maps[]

if i venture far away and find extreme hills or edge biomes will emeralds spawn? –Preceding unsigned comment was added by 82.8.138.138 (Talk) 17:14, 9 June 2012‎ (UTC). Please sign your posts with ~~~~

Yes emeralds will spawn in new chunks. Arrran Weeviling
thanks. –Preceding unsigned comment was added by 82.8.138.138 (Talk) 17:25, 9 June 2012 (UTC). Please sign your posts with ~~~~

Why is the side marked with {{cleanup}}?[]

Why? metarmask 15:33, 27 July 2012 (UTC) metarmask

Does Emerald Ore show up in MCEdit?[]

I want to know if emerald ore will show up in MCEdit 1.2.5 version (r1000), when you put the "show ores" option on. I have a new world, so they should spawn.

71.194.100.243 17:45, 24 August 2012 (UTC)71.194.100.243

Jungle?[]

Does Emerald Ore generate in Jungle or not? –Preceding unsigned comment was added by 98.255.196.36 (Talk) 20:35, 27 August 2012‎ (UTC). Please sign your posts with ~~~~

Emerald Ore is only created by the Extreme Hills (Edge) chunk generator. It can be placed anywhere in the chunk, so it may be located in an adjacent biome, but it will always be in a chunk containing an Extreme Hills (Edge) biome. In the example MegaScience provided, the ore is in a Jungle biome, but just one block south is Extreme Hills Edge. -- Orthotope 00:32, 28 August 2012 (UTC)

Emeralds in Swamps[]

I found emerald ore in the middle of swampland (underground) with desert biome to the (arbitrary) north, planes to the east, ocean to the south, and jungle to the west, did I break minecraft or is there more to the Emerald ore generation code? 99.65.180.153 07:02, 26 December 2012 (UTC)

Can you provide the world seed and coordinates of where you found it? I would be quite interested if this can be reproduced in vanilla Minecraft, as there is nothing in the code that generates emerald ore anywhere other than extreme hills (edge) biomes. -- Orthotope 08:14, 26 December 2012 (UTC)

AH! I take it back, I guess I was in extreme hills edge - the ravine I was following through the middle of the swamp must have taken me just inside the next biome - my bad. 99.65.180.153 18:51, 27 December 2012 (UTC)

Emeralds found in Desert Biome![]

I was making a strip mine and I happened to stumble into a cave. I looked around. On the other side of a lava pool, I thought I saw a gem. I pressed F3 and was in a Desert. I wasn't sure if I crossed the lava I crossed the Desert. I went over the lava, turning it into obsidian with water, and looked at the gem and checked my location. Sure enough, it said Desert and I was standing on Emeralds! This was the first time I found them out of an Extreme Hills Biome! I am giving the location of the Emeralds as well as the seed for them. (This is for 1.5.2)

Seed: 6330093085411074439 Location: X= -539 Y= 12 Z= 288

--24.117.91.246 16:08, 31 May 2013 (UTC)Bella

In a world generated with that seed, that location is in the middle of an ocean. Either the location and/or seed are incorrect, or you're using mods that affect world generation. -- Orthotope talk 22:07, 1 June 2013 (UTC)
I forgot about this post. Anyways, I was going to answer that it was chuck related. Ores are generated per chuck, so if you find emeralds in another biome in vanilla Minecraft, it's because the chuck they are in has at least one space of extreme hills or extreme hills edge, allowing emeralds to generate anywhere within the 16x16 area of the chuck, at the appropriate y level of course. Digging (literally) more into the seed than Orthotope, also in 1.5.2, I can verify the coordinates are in the middle of an ocean, as well as the spawn. The exact coordinates is literally in the middle of a lava pool. Clearing out the lava and digging a few blocks in all six directions, the only ores available in this spot are coal (visible in the wall) and iron (under the lava). There is no emerald here. Addition: I would like to correct my findings. Underneath the lava pools, there is some redstone in a few spots and some diamond under the smaller pool. Still no emerald. Kanegasi C 23:31, 1 June 2013 (UTC)

Is the texture in Pocket Edition?[]

Is the texture for Emerald Ore 'hidden' in Pocket Edition? I've had quite a few instances where the textures for everything mess up. Once I had Stone blocks (or something like them) and they seemingly changed into Emerald Ore. http://saszombieassault.wikia.com/wiki/File:Screenshot_2014-01-06-23-38-43.png <--- That's a screenshot I took. 67.140.54.216 21:26, 8 February 2014 (UTC)

Should we split the Ruby Ore from Emerald Ore page?[]

Because I feel it is necessary to split Ruby Ore from Emerald Ore, Ruby Ore is entirely different from Emerald Ore. 173.178.84.90 15:03, 4 August 2020 (UTC)

 Strong opposeNo.. why? Ruby ore is'nt even in the game and it has never been in thr game, whats the point of spllitingHumiebee talk contributions 15:36, 4 August 2020 (UTC)
I don't see any value in doing this. While emerald ore used a ruby-like texture in 12w21a, the items it dropped where emeralds (for more info see page). Later on, the texture of the ore was changed and the only the thing that was removed was an unused (!) texture of a ruby item. ---- Elite hog (talk) 15:42, 4 August 2020 (UTC)

exposed emerald ore?[]

I started playing Survival mode for once, and after Day 1 I went mining and found a single bit of emerald ore exposed on the surface (I was, obviously, in an Extreme Hills biome), nearby some also-surfaced copper. Is this normal for such a rare ore? Minecraft Dungeons Flames of the Nether (talk) 14:07, 14 March 2021 (UTC)

Most common at level 256?[]

"Emerald ore can generate in Overworld in the form of blobs. Emerald ore attempts to generate 50 times per chunk in blobs of 1, from levels -16 to 320, being most common at level 256"

I'm curious where this statement comes from? on 99% of the coordinates in a world, this level is only air. Is it possible to provide an actual "Most common level"?

212.233.35.85 23:04, 18 June 2022 (UTC)Engineer9736

The info I've used in finding ores comes from this picture. I haven't looked at the code for this. But it means if you want to find emeralds you need to look in the highest mountains. https://twitter.com/henrikkniberg/status/1465721712973164544 - AD OffKilter (talk) 23:43, 18 June 2022 (UTC)

"Mountains" vs. "Frozen Peaks"[]

In the top section, it says the biomes included are Mountains, Frozen Peaks, and Windswept Hills. But Mountains included Frozen Peaks (plus five others), and there is no actual "Mountains" biome. Similarly, Windswept Hills included Windswept Hills, Forest, and Gravelly Hills.

Can someone clarify exactly which biomes have emerald ore in them? Thanks! SirDaddicus (talk) 20:51, 5 December 2022 (UTC)

There are no "Mountains" anymore. Mountains is now a catch-all term including Meadow, Grove, Snowy Slopes, Jagged Peaks, Frozen Peaks, Stony Peaks, Windswept Hills, Windswept Forest, and Windswept Gravelly Hills. The text says emerald ore generates "in all types of windswept hills or mountains biomes". The list should be expanded out, probably to a table, but I don't have the expertise to do that. Can someone please update the text? SirDaddicus (talk) 14:06, 27 March 2023 (UTC)
Advertisement