Juice Box: Difference between revisions

From PZwiki
(Automated case update)
m (Automated Formatting)
(One intermediate revision by the same user not shown)
Line 22: Line 22:
|item_id=Base.JuiceBox
|item_id=Base.JuiceBox
}}
}}
A '''juice box''' is a non-perishable [[food]] [[Items|item]].
A '''juice box''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
A juice box can be eaten, providing the player with some positive effects, including reducing [[Moodles#Unhappy|unhappiness]].
A juice box can be eaten, providing the player with some positive effects, including reducing [[Unhappy|unhappiness]].


==Distribution==
==Distribution==
Line 39: Line 38:
! style="width: 3.2em;" | Chance
! style="width: 3.2em;" | Chance
|-
|-
|rowspan="3"|all  
|rowspan="3"|all
|[[fridge]]  
|[[fridge]]
|4  
|4
|1
|1
|-
|-
|[[fridge]]  
|[[fridge]]
|4  
|4
|1
|1
|-
|-
|[[fridge]]  
|[[fridge]]
|4  
|4
|1
|1
|-
|-
|rowspan="2"|cafeteria  
|rowspan="2"|cafeteria
|[[displaycasebakery]]  
|[[displaycasebakery]]
|4  
|4
|1
|1
|-
|-
|[[displaycasebakery]]  
|[[displaycasebakery]]
|4  
|4
|2
|2
|-
|-
|camping  
|camping
|[[fridge]]  
|[[fridge]]
|4  
|4
|1
|1
|-
|-
|daycare  
|daycare
|[[desk]]  
|[[desk]]
|4  
|4
|1
|1
|-
|-
|kitchen  
|kitchen
|[[counter]]  
|[[counter]]
|4  
|4
|6
|6
|}
|}
Line 113: Line 112:
WorldStaticModel = JuiceBox,
WorldStaticModel = JuiceBox,
EvolvedRecipeName = Juice,
EvolvedRecipeName = Juice,
}  
}
}}
}}
}}
}}

Revision as of 09:28, 14 April 2024

Project ZomboidItemsFoodDrinksJuice Box
Spiffo controlyourself.png
This page was last updated for an older version (41.68).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Juice Box
JuiceBox Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Packaged
True
Nutrition
HungerMoodle Icon Hungry.png
-2
ThirstMoodle Icon Thirsty.png
-13
CaloriesCalories
60
CarbohydratesCarbohydrates
14
ProteinsProteins
0
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
-10
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.

Distribution

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

Containers
Building/Room Container Rolls Chance
all fridge 4 1
fridge 4 1
fridge 4 1
cafeteria displaycasebakery 4 1
displaycasebakery 4 2
camping fridge 4 1
daycare desk 4 1
kitchen counter 4 6

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
Beverage
Beverage
2
Toast
Toast
1

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