FoodProperties
Link to foodproperties
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.food.FoodProperties;
Static Methods
Link to static-methods
Name: create
Return Type: FoodProperties
ZenScript CopyFoodProperties.create(nutrition as int, saturationModifier as float) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter nutrition | Type int | Description No Description Provided |
Parameter saturationModifier | Type float | Description No Description Provided |
Methods
Link to methods
Name: addEffect
Return Type: FoodProperties
ZenScript CopyFoodProperties.addEffect(effect as MobEffectInstance, probability as float) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffectInstance | Description No Description Provided |
Parameter probability | Type float | Description No Description Provided |
Name: canAlwaysEat
Return Type: boolean
ZenScript Copy// FoodProperties.canAlwaysEat() as boolean
myFoodProperties.canAlwaysEat();
Name: getEffects
Return Type: stdlib.List<Pair<MobEffectInstance,float?>>
ZenScript Copy// FoodProperties.getEffects() as stdlib.List<Pair<MobEffectInstance,float?>>
myFoodProperties.getEffects();
Name: getNutrition
Return Type: int
ZenScript Copy// FoodProperties.getNutrition() as int
myFoodProperties.getNutrition();
Name: getSaturationModifier
Return Type: float
ZenScript Copy// FoodProperties.getSaturationModifier() as float
myFoodProperties.getSaturationModifier();
Name: isFastFood
Return Type: boolean
ZenScript Copy// FoodProperties.isFastFood() as boolean
myFoodProperties.isFastFood();
Name: isMeat
Return Type: boolean
ZenScript Copy// FoodProperties.isMeat() as boolean
myFoodProperties.isMeat();
Name: removeEffect
Return Type: FoodProperties
ZenScript CopyFoodProperties.removeEffect(effect as MobEffectInstance) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffectInstance | Description No Description Provided |
Name: setCanAlwaysEat
Return Type: FoodProperties
ZenScript CopyFoodProperties.setCanAlwaysEat(canAlwaysEat as boolean) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter canAlwaysEat | Type boolean | Description No Description Provided |
Name: setIsFastFood
Return Type: FoodProperties
ZenScript CopyFoodProperties.setIsFastFood(fastFood as boolean) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter fastFood | Type boolean | Description No Description Provided |
Name: setIsMeat
Return Type: FoodProperties
ZenScript CopyFoodProperties.setIsMeat(isMeat as boolean) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter isMeat | Type boolean | Description No Description Provided |
Name: setNutrition
Return Type: FoodProperties
ZenScript CopyFoodProperties.setNutrition(nutrition as int) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter nutrition | Type int | Description No Description Provided |
Name: setNutrition
Return Type: FoodProperties
ZenScript CopyFoodProperties.setNutrition(saturationModifier as float) as FoodProperties
Parameter | Type | Description |
---|---|---|
Parameter saturationModifier | Type float | Description No Description Provided |
Properties
Link to properties
Nombre | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Nombre canAlwaysEat | Type boolean | Has Getter true | Has Setter true | Description No Description Provided |
Nombre effects | Type stdlib.List<Pair<MobEffectInstance,float?>> | Has Getter true | Has Setter false | Description No Description Provided |
Nombre isFastFood | Type boolean | Has Getter true | Has Setter true | Description No Description Provided |
Nombre isMeat | Type boolean | Has Getter true | Has Setter true | Description No Description Provided |
Nombre nutrition | Type int | Has Getter true | Has Setter true | Description No Description Provided |
Nombre saturationModifier | Type float | Has Getter true | Has Setter true | Description No Description Provided |