FoodData
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.food.FoodData;
Members
addExhaustion(exhaustion as float)
Adds exhaustion to the entity.script.zs
// FoodData.addExhaustion(exhaustion as float);myFoodData.addExhaustion(myFloat);
Parameters:
exhaustion: float
Type: float
- The amount of exhaustion to add. eat(foodLevelModifier as int, saturationLevelModifier as float)
Replenishes the food level and saturation level.script.zs
// FoodData.eat(foodLevelModifier as int, saturationLevelModifier as float);myFoodData.eat(myInt, myFloat);
Parameters:
foodLevelModifier: int
Type: int
- The amount to modify the food level by. saturationLevelModifier: float
Type: float
- The amount to modify the saturation level by. eat(foodProperties as FoodProperties)
Replenishes the food level and saturation level.script.zs
myFoodData.eat(myFoodProperties);
Parameters:
getExhaustionLevel() as float
Gets the exhaustion level.script.zs
Returns: The exhaustion level.
// FoodData.getExhaustionLevel() as float;myFoodData.getExhaustionLevel();
Return Type:
float
getFoodLevel() as int
Gets the food level.script.zs
Returns: The food level.
// FoodData.getFoodLevel() as int;myFoodData.getFoodLevel();
Return Type:
int
getLastFoodLevel() as int
Gets the last food level.script.zs
Returns: The last food level.
// FoodData.getLastFoodLevel() as int;myFoodData.getLastFoodLevel();
Return Type:
int
getSaturationLevel() as float
Gets the saturation level.script.zs
Returns: The saturation level.
// FoodData.getSaturationLevel() as float;myFoodData.getSaturationLevel();
Return Type:
float
needsFood() as bool
Checks if the entity needs food.script.zs
Returns: True if the entity needs food, false otherwise.
// FoodData.needsFood() as bool;myFoodData.needsFood();
Return Type:
bool
setExhaustion(exhaustionLevel as float)
Sets the exhaustion level.script.zs
// FoodData.setExhaustion(exhaustionLevel as float);myFoodData.setExhaustion(myFloat);
Parameters:
exhaustionLevel: float
Type: float
- The amount of exhaustion to set. setFoodLevel(foodLevel as int)
Sets the food level.script.zs
// FoodData.setFoodLevel(foodLevel as int);myFoodData.setFoodLevel(myInt);
Parameters:
foodLevel: int
Type: int
- The amount of food to set. setSaturation(saturationLevel as float)
Sets the saturation level.script.zs
// FoodData.setSaturation(saturationLevel as float);myFoodData.setSaturation(myFloat);
Parameters:
saturationLevel: float
Type: float
- The amount of saturation to set.