This commit is contained in:
Pyritie 2025-12-17 20:24:32 +00:00
commit 3fe50f6345

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'])
} }