The Spice Of Life Mod 1.7.10/.1.7.2/1.6.4

The Spice Of Life Mod 1.7.10
A mod that encourages dietary variety through diminishing returns.
Makes it so that eating the same thing over and over will give you fewer and fewer hunger restored each time. Everything in this mod is entirely configurable (server-side), including the formula used to calculate the diminishing returns (see Configuration section below). Compatible with Hunger Overhaul.
Note: This mod is mostly intended to be used with other mods that add more food to the game.
Default configuration file
ShowSelect |
|
##################### server#===================# These config settings are server-side only# The values will get sent to all clients on the server####################
server {
# If true, a player's food history will be empty once they pass the new.player.food.eaten.treshold
# If false, any food eaten before the threshold is passed will also count after it is passed
B:clear.history.after.food.eaten.threshold.reached=false
# The maximum amount of eaten foods stored in the history at a time
I:food.history.length=12
# If true, food history will not get reset after every death
B:food.history.persists.through.death=false
# Uses the EvalEx expression parser
# See: https://github.com/uklimaschewski/EvalEx for syntax/function documentation
#
# Available variables:
# count : The number of times the food has been eaten (out of the last max_history_length foods)
# max_history_length : The maximum number of foods that are stored in the history at a time (food.history.length)
# cur_history_length : The current number of foods that are stored in the history (<= max_history_length)
# food_hunger_value : The default amount of hunger the food would restore in hunger units (note: 1 hunger unit = 1/2 hunger bar)
# food_saturation_mod : The default saturation modifier of the food
# cur_hunger : The current hunger value of the player in hunger units (20 = full)
# cur_saturation : The current saturation value of the player
# total_food_eaten : The all-time total number of times any food has been eaten by the player
#
S:food.modifier.formula=MAX(0,(1- count/12))^MAX(0, food_hunger_value-ROUND(MAX(0,1- count/12),0))
# The number of times a new player (by World) needs to eat before this mod has any effect
I:new.player.food.eaten.threshold=6}
|

Download The Spice Of Life Mod 1.6.4
For 1.7.10/1.7.2
http://www.dl3.5minecraft.net/download.php?file=aa640787c0e1c630d4c4fa1e2644052d
For 1.6.4
http://www.dl3.5minecraft.net/download.php?file=e12281220e59c0b2fd4f1ef960fc6dd2
Author: squeek502