From bc15723ecab5a2587d841eeb2067fa6adc2981f6 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 31 Jan 2026 11:56:52 +0000 Subject: [PATCH] add loot table for piglin brutes --- .../loot_tables/entities/piglin_brute.json | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 kubejs/data/minecraft/loot_tables/entities/piglin_brute.json diff --git a/kubejs/data/minecraft/loot_tables/entities/piglin_brute.json b/kubejs/data/minecraft/loot_tables/entities/piglin_brute.json new file mode 100644 index 000000000..060c1a535 --- /dev/null +++ b/kubejs/data/minecraft/loot_tables/entities/piglin_brute.json @@ -0,0 +1,45 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:food/pork", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] +} \ No newline at end of file