![]() |
VOOZH | about |
This topic got archived earlier today, but I really want to know what the iron golem's damage actually is because it keeps changing over time, and if someone can replay of what the damage is, then please say so. Blockofnetherite Talk Contributions 01:55, 1 December 2020 (UTC)
The amount of damage the iron golem keeps changing a LOT. Some are obviously vandalism, others are hard to tell. Can someone check the code to settle this statement? Blockofnetherite Talk Contributions 19:32, 31 August 2020 (UTC)
Is there a conflict in the description of where a golem can spawn? It says that a golem can spawn inside half-slabs, but to me that appears to conflict with the statement that the target block must be air, water or lava and must have a block with a solid top surface underneath. Griffon28 (talk) 19:26, 28 January 2021 (UTC)
I think the section needs an update, because I just had another spawn that I thought was impossible. This time the golem is not "directly under the sky". The blocks above the golem have redstone running over them. If there is a better place to discuss this, please tell me. Griffon28 (talk) 20:11, 3 February 2021 (UTC)
The article isn't clear about what happens to experience and item drops from mobs killed by Iron Golems. Can the player still get experience and drops or not?--177.72.23.38 18:34, 22 February 2021 (UTC)
I've tested the iron golem attempting to attack me by summoning a villager and killing it while it sees me and then it flings me up by 2.86843 blocks into the air; don't know whether other mobs the golem attacks are flung at 2.86843 blocks in the air like the player 142.116.177.230 18:57, 8 May 2021 (UTC)
"In Java Edition, iron golems have 100% knockback resistance from normal attacks. They can still be knocked back by the Knockback enchantment on swords and the Punch enchantment on bows."
I've tested using a sword to deal knockback to the golem, but it doesn't receive knockback, even when sprint attacking (this does not apply to bows) - DOES THAT MEAN THE KNOCKBACK ENCHANTMENT CANNOT AFFECT IRON GOLEMS PinksheepyIsLeaving (talk) 13:14, 30 May 2021 (UTC)
https://minecraft.wiki/w/Iron_Golem?oldid=2058813
Need to revert, though I preserve some others' edit because again IP is adding the redundant information again. "Note" are meant to add extra information that would not fit for two column before it. If one of these two column can cover the information, just use it. 1Way4To-J.Smile 08:58, 16 November 2021 (UTC)
In this edit from 6 January 2022, the spawn volume for iron golems was changed from 16ร6ร16 to 16ร12ร16, with a note that this change occurred in Bedrock Edition 1.17.30. The release notes say only "Tweaked Iron Golem spawning logic to better match Java Edition", so something did change.
Lately, I have seen YouTube videos showing that the Bedrock Edition spawn volume is actually 17ร13ร17, now centered on a POI block instead of the northwest bottom corner of the POI block.
I'll update the article accordingly, but does anyone know when this changed? The fact should be added to the history section. Amatulic (talk) 00:55, 19 May 2022 (UTC)
I've been working on an iron golem farm with some special requirements, as well as trying to find the best solution to the "exposed to sky" 'modifier' with fishing. I found an issue with the "solid-blocking" spawn requirements. Cake is listed as a material with "solid-blocking" but through a short test spanning over an hour or so, I feel can say that either it isn't "solid-blocking" OR iron golems don't entirely rely on "solid-blocking" blocks as a foundation.
My findings: Having cake as upper-most block does not allow iron golems to spawn on top of them. The same coordinates were tested succesfully with Stone blocks, and no other changes to the setup was made in-between. Furthermore, since I can't find a total collection of information on what blocks exposure to Sky, cake WILL block Sky, so Iron Golems cannot spawn belowthat either. (Tested with below method, only Cake was added on top of glass)
Irrelevant/Already answered findings that I confirmed: Golems do not spawn on top of Glass, but do spawn below (tested with Stone 4 blocks below Glass), which leads me to believe Glass is viable to be placed over fishing source and would still allow player to achieve Sky modifier for fishing.
And before you ask, yes I tried to make an iron golem farm with Cake floor. Requirements were an irom golem farm that doesn't block Sky. I also suggest some sort of list of blocks which do and do not block Sky (I had a hard time trying to find that, and only found fragments of information)
Sources of information: https://minecraft.wiki/w/Iron_Golem (See Spawning) https://minecraft.wiki/w/Materials#Materials (Link found in Spawning, below Critera) https://minecraft.wiki/w/Fishing?so=search ("Sky" requirement under Mechanics)
Also sorry if this is posted in the wrong place.
Tidal Flame 12:31, 27 June 2022 (UTC)
It seems Bedrock's spawning requirements have dramatically changed since the last edit.
-- Golems can spawn in a gap of 2 blocks, for example, block-air-air-block, despite golems instantly taking suffocation damage and subsequently dying. Golems dying via suffocation still drop their normal items.
-- Golem spawning does not start at the top of the bounding box extending from the villager center, it starts at the bottom. As the game finds the first block with a top surface and 2 non-full blocks above it, the golems will spawn. I cannot confirm horizontal requirements, but I believe spawning requires 2x2x2 (importantly, not 3x3x2) space with no other mobs occupying the space.--Hedo29 (talk) 19:17, 17 July 2023 (UTC)
I noticed the link to popularity (in "drops" section) was taking me to the wrong place so I corrected it, but THEN I noticed the landing page said it's outdated in Java โ but the link is for Bedrock โ and now I'm just plain confused. Somebody more in the loop please look into this 2A00:F41:589D:B680:B446:91FF:FE73:38F6 15:57, 11 April 2024 (UTC)
I was in a survival word, I hit a non-player-built iron golem, and it wasn't attacking me. Is this a glitch? Or does it not work in BE? Crabbmc (talk) 02:30, 19 May 2024 (UTC)
File:Earlyiron golem.png File:Iron Golem (texture no alpha) JE1.png
Just wanted the user's to know, should it be kept? ๐ Image
MinecraftFan1000 (talk) 02:13, 21 March 2025 (UTC)
Follow range has a random spawn bonus between +-0.11485 [code] following a triangular distribution where the entity's final follow range is given by its base follow range + (base follow range * random spawn bonus).
I think this applies to a lot of the ranges in many other places, so it might be better in the range/distance page and have the first mention of "follow range" within a section link to that instead? I.e. for iron golem detection, the 16 is the villager's follow range, which could then be anywhere between 14.1624 and 17.8376.
The detection uses a generic sensor code that finds an entity whose bounding box intersects a box created by expanding the bounding box of the entity doing the sensing by its follow range in all directions (bounding box to bounding box cardinally).
However, some detections are based on euclidean distance from the sensing entity's position to the other entity's position (e.g. ActiveTargetGoal in some hostile-target detection).
I don't know the full classification of which detections are using which though.
WaterGenie3 (talk) 15:40, 2 June 2025 (UTC)
Iron Golem#Gallery Outdated image in the screenshot saying "An iron golem offers a poppy to several baby villagers.". I see pre-1.14 villages and pre-1.14 textures!
From my testing I can see that the correct property would be "angry_at" Britdan (talk) 13:03, 25 October 2025 (UTC)