From 1b23679ae45393f1104cee94cf69069b6340b441 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 1 Feb 2026 21:36:34 +0000 Subject: [PATCH] Make iron golems drop nuggets --- CHANGELOG.md | 4 ++ .../loot_tables/entities/iron_golem.json | 61 ++++++++++++++----- 2 files changed, 50 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f5baaf..df59deb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Iron golems now drop iron nuggets (previously they didn't drop any iron at all) + ### Fixed - *Actually* removed some leftover Tinkers' Contruct functional blocks diff --git a/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/entities/iron_golem.json b/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/entities/iron_golem.json index 89e7b67..0db192a 100644 --- a/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/entities/iron_golem.json +++ b/overrides/global_packs/required_data/mc_rebalance_datapack/data/minecraft/loot_tables/entities/iron_golem.json @@ -1,17 +1,48 @@ { - "type": "minecraft:entity", - "pools": [{ - "bonus_rolls": 0, - "entries": [{ - "type": "minecraft:item", - "functions": [{ - "add": false, - "count": {"type": "minecraft:uniform","max":2,"min":0}, - "function": "minecraft:set_count" - }], - "name": "minecraft:poppy" - }], - "rolls": 1 - }], - "random_sequence": "minecraft:entities/iron_golem" + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/iron_golem" }