Juice Box

From PZwiki
Revision as of 13:10, 13 March 2022 by Vaileasys (talk | contribs) (updated to 41.68 + added model + navbox)
Project ZomboidItemsFoodDrinksJuice Box
Juice Box
Juice Box
Juice Box
General
Category Food
Encumbrance
Heavy Load
0.1
Packaged True
Nutrition
Hunger
Hunger
-2
Thirst
Thirst
-13
Calories
Calories
60
Carbohydrates
Carbohydrates
14
Proteins
Proteins
0
Fat
Fat
0
Effect
Unhappiness
Unhappiness
-10
Technical details
Item ID Base.JuiceBox

A juice box is a non-perishable food item.

Usage

A juice box can be eaten, providing the player with some positive effects, including reducing unhappiness.

Distribution

Juice boxes can be found in convenience store, Spiffo's and Pizza Whirled refrigerators.

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.68

    item JuiceBox
	{
		DisplayCategory 	= Food,
		Type			= Food,
		DisplayName		= Juice Box,
		Icon			= JuiceBox,
		Weight			= 0.1,
		HungerChange 		= -2,
		ThirstChange		= -13,
		UnhappyChange	    	= -10,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= DrinkingFromCarton,
        	Carbohydrates 		= 14,
        	Proteins 		= 0,
        	Lipids 			= 0,
        	Calories 		= 60,
        	Packaged 		= TRUE,
        	WorldStaticModel 	= JuiceBox,
	}

See also