Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Juice Box

From PZwiki
Project ZomboidItemsFoodDrinksJuice Box
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Juice Box
JuiceBox Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Packaged
True
Nutrition
HungerUI Hunger.png
-2
ThirstUI Thristy.png
-13
CaloriesCalories
60
CarbohydratesCarbohydrates
14
ProteinsProteins
0
FatFat
0
Effect
UnhappinessUI Unhappy.png
-10
Cooking
Custom recipe
Juice
Technical
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.

Location

The loot distributions can be found in the table(s) below.

JuiceBox distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
all fridge 4.44%
cafeteria displaycasebakery 41.46%
cafeteria displaycasebakery 23.67%
camping fridge 23.67%
conveniencestore fridge 23.67%
cornerstore fridge 23.67%
daycare desk 4.44%
fossoil fridge 23.67%
gasstore fridge 23.67%
generalstore fridge 23.67%
generalstorestorage fridge 23.67%
gigamart fridge 23.67%
grocery fridge 23.67%
grocerystorage fridge 23.67%
kitchen counter 15.52%
kitchen overhead 15.52%
kitchen shelves 15.52%
livingroom counter 15.52%
livingroom overhead 15.52%
pharmacy fridge 23.67%
zippeestore fridge 23.67%
Foraging
Amount Skill level Biome: chance Weather modifiers % Month modifiers
Snow Rain Day Night Months available Bonus months Malus months
1 - Nav: 1
TownZone: 1
TrailerPark: 1
- - - - - - -

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

Evolved recipes

Juice Box is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.

Product Nutrition
BeverageBeverageBeverageBeverageBeverageBeverageBeverage
Beverage
2
BreadSlices.png
Toast
1

History

Base.JuiceBox

Version Description
Build 41.72 EvolvedRecipeName added with value Juice.
EvolvedRecipe added with value {'Beverage': '2', 'Beverage2': '2'}.
FoodType added with value Juice.
Build 41.65 DisplayCategory added with value Food.
Build 41.54 CustomEatSound changed from DrinkingFromBottle to DrinkingFromCarton.
Build 41.51 WorldStaticModel added with value JuiceBox.
Build 40.9 CustomEatSound changed from PZ_DrinkingFromBottle to DrinkingFromBottle.
Build 34.23 Calories added with value 60.
Nutrition added with value 14.
CustomContextMenu added with value Drink.
CustomEatSound added with value PZ_DrinkingFromBottle.
Nutrition added with value 0.
Packaged added with value TRUE.
Proteins added with value 0.
Build 32.14 Released on this version.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item JuiceBox
	{
		DisplayName = Juice Box,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = JuiceBox,
		EvolvedRecipe = Beverage:2;Beverage2:2,
		FoodType = Juice,
		Packaged = TRUE,
		HungerChange = -2,
		ThirstChange = -13,
		UnhappyChange = -10,
		Calories = 60,
		Carbohydrates = 14,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCarton,
		WorldStaticModel = JuiceBox,
		EvolvedRecipeName = Juice,
	}

See also