remove animal fat from beasts cuz you can mob farm them

This commit is contained in:
Pyritie 2025-12-17 13:47:35 +00:00
parent 5abe5fdfd2
commit 098e1e6f06

View file

@ -241,11 +241,10 @@ function registerPrimitiveCreaturesLoots(event) {
// mistah beeeaaaasssstt // mistah beeeaaaasssstt
event.addEntityLootModifier('primitive_creatures:beast') event.addEntityLootModifier('primitive_creatures:beast')
.removeLoot(ItemFilter.ALWAYS_TRUE) .removeLoot(ItemFilter.ALWAYS_TRUE)
.addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) .addWeightedLoot([4, 6], ['tfg:food/raw_long_pig_filet'])
.addWeightedLoot([12, 16], ['minecraft:bone']) .addWeightedLoot([6, 9], ['minecraft:bone'])
.addWeightedLoot([2, 3], ['tfc:large_raw_hide']) .addWeightedLoot([1, 2], ['tfc:large_raw_hide'])
.addWeightedLoot([4, 6], ['tfc:blubber'])
event.addEntityLootModifier('primitive_creatures:beast') event.addEntityLootModifier('primitive_creatures:beast')
.matchMainHand('#forge:tools/butchery_knives') .matchMainHand('#forge:tools/butchery_knives')
.addWeightedLoot([4, 8], ['tfg:food/raw_long_pig_filet']) .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet'])
} }