Canned Fruit Beverage

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Fruit Beverage
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing open model
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Canned Fruit Beverage
CannedJuice Model.png
Opened Canned Fruit Beverage
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
True
Days fresh
5 days
Days until rotten
7 days
Nutrition
HungerMoodle Icon Hungry.png
-15
ThirstMoodle Icon Thirsty.png
-85
CaloriesCalories
250
CarbohydratesCarbohydrates
0
ProteinsProteins
10
FatFat
24
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.CannedFruitBeverage
Base.CannedFruitBeverageOpen

Canned Fruit Beverage (written as JUICE on the model) is a non-perishable food item used in cooking.

Usage

Consumable properties

Opened canned fruit beverages can be drunk, providing the player with some positive effects, however, these will become negative the longer it's left to perish.

Fresh Stale Rotten

CannedJuice Open.png
Hunger: -15

Unhappiness: -10

CannedJuice Open.png
Hunger: -11
Boredom: +10

CannedJuice Open.png
Hunger: -6
Boredom: +20
Unhappiness: +10
Dangerous, will cause sickness.

Crafting

Obtaining

Product Ingredients Tools Requirements Workstation XP
CannedJuice Open.png
Opened Canned Fruit Beverage
CannedJuice.png Canned Fruit Beverage ×1 CanOpener.png
Can Opener
none none none

Evolved recipes

This item is an ingredient in the following evolved recipes.

Product Nutrition
Fruit Salad
Fruit Salad
15
Cake
Cake
15
Muffin
Muffin
15
Pancakes
Pancakes
15
Waffles
Waffles
15
Beverage
Beverage
15

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 CannedFruitBeverage
	{
		DisplayName = Canned Fruit Beverage,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedJuice,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedFruitBeverage_Ground,
		Tags = HasMetal,
	}

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedFruitBeverageOpen
	{
		DisplayName = Opened Canned Fruit Beverage,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedJuice_Open,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Cake:15;FruitSalad:15;Pancakes:15;Waffles:15;Muffin:15;Beverage:5;Beverage2:5,
		FoodType = Juice,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 5,
		DaysTotallyRotten = 7,
		HungerChange = -15,
		UnhappyChange = -10,
		ThirstChange = -85,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenFruitBeverage_Ground,
		EvolvedRecipeName = Fruit,
		Tags = HasMetal,
	}

See also