Entity loot table changes (#1035)

* trying stuff, might delete later

* updated all loot tables so looting only affects animal meat drops
This commit is contained in:
Pyritie 2025-05-18 21:11:53 +01:00 committed by GitHub
parent 054a27977b
commit 6048af8042
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 496 additions and 449 deletions

View file

@ -3,8 +3,10 @@
function registerPrimitiveCreatesLoots(event) {
event.addEntityLootModifier('kaolinclayze:tfc')
.addWeightedLoot([7,15], ['tfc:kaolin_clay', 'minecraft:clay_ball'])
.removeLoot(ItemFilter.ALWAYS_TRUE)
.addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball'])
event.addEntityLootModifier('kaolinclayze:golem_2')
.addWeightedLoot([7,15], ['gtceu:poor_raw_graphite', 'gtceu:raw_graphite', 'gtceu:rich_raw_graphite'])
.removeLoot(ItemFilter.ALWAYS_TRUE)
.addWeightedLoot([4,6], ['gtceu:rich_raw_graphite'])
}