Canned Evaporated Milk

From PZwiki
(Redirected from Canned Evaporated Milk)
Project ZomboidItemsFoodCanned foodCanned Evaporated Milk
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Evaporated Milk
TinnedCondensedMilk Model.png
TinnedCondensedMilkOpen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
Yes
Days fresh
4 days
Days until rotten
7 days
Nutrition
HungerMoodle Icon Hungry.png
-10
ThirstMoodle Icon Thirsty.png
-10
CaloriesCalories
472
CarbohydratesCarbohydrates
23.6
ProteinsProteins
23.6
FatFat
23.6
Technical
Item ID
Base.CannedMilk
Base.CannedMilkOpen

Canned evaporated milk (previously called Canned Condensed Milk, which is still written as Condensed Milk on the model) is a non-perishable food item.

Usage

Canned Evaporated milk can only be opened with a can opener, and once opened become perishable.

Product Ingredients Tools Requirements Workstation XP
CannedCondensedMilk Open.png
Opened Canned Evaporated Milk
CannedCondensedMilk.png Canned Evaporated Milk ×1 CanOpener.png
Can Opener
none none none

Consumable properties

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

Fresh Stale Rotten

CannedCondensedMilk Open.png
Hunger: -10


CannedCondensedMilk Open.png
Hunger: -7
Boredom: +10
Unhappiness: +10

CannedCondensedMilk Open.png
Hunger: -4
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned Evaporated Milk is a cooking ingredient.

Product Nutrition
Fruit Salad
Fruit Salad
2
Pie (savory)
Pie (savory)
5
Cake
Cake
5
Pancakes
Pancakes
2
Waffles
Waffles
2
Oatmeal
Oatmeal
2
Beverage
Beverage
5

Distribution

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

CannedMilk distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median 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.
Containers
Building/Room Container Effective chance
FoodCache1 FoodBox 34.79%
SafehouseLoot counter 10.78%
SurvivorCache1 counter 10.78%
SurvivorCache2 counter 10.78%
bakerykitchen counter 10.78%
breakroom counter 10.78%
breakroom overhead 10.78%
breakroom shelves 10.78%
burgerkitchen counter 10.78%
cafe metal_shelves 10.78%
cafekitchen counter 10.78%
cafekitchen shelves 10.78%
cafeteriakitchen counter 10.78%
deepfry_kitchen counter 10.78%
dinerkitchen counter 10.78%
donut_dining counter 10.78%
donut_kitchen counter 10.78%
garagestorage crate 23.28%
generalstore crate 10.78%
generalstore shelves 10.78%
generalstorestorage crate 10.78%
generalstorestorage shelves 10.78%
gigamart crate 10.78%
gigamart shelves 10.78%
gigamartkitchen counter 10.78%
grocery crate 10.78%
grocery shelves 10.78%
grocery smallcrate 10.78%
grocerystorage crate 2.57%
grocerystorage metal_shelves 2.57%
grocerystorage smallcrate 2.57%
kitchen counter 10.78%
kitchen crate 23.28%
kitchen overhead 10.78%
kitchen shelves 10.78%
kitchen_crepe counter 10.78%
livingroom counter 10.78%
livingroom overhead 10.78%
restaurantkitchen counter 10.78%
spiffoskitchen counter 10.78%
storageunit crate 23.28%

Canned Evaporated Milk can often be found in kitchen counters, and can be rarely found as "Trash" when foraging.

Code

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

CannedCondensedMilk.png Base.CannedMilk
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedMilk
	{
		DisplayName = Canned Evaporated Milk,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedCondensedMilk,
		CantBeFrozen = TRUE,
		Packaged = TRUE,
		Calories = 472,
		Carbohydrates = 23.6,
		Lipids = 23.6,
		Proteins = 23.6,
		StaticModel = CanClosedMilk,
		WorldStaticModel = CanClosedMilk,
		Tags =HasMetal,
		CannedFood = TRUE,
	}

CannedCondensedMilk Open.png Base.CannedMilkOpen
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedMilkOpen
	{
		DisplayName = Opened Canned Evaporated Milk,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedCondensedMilk_Open,
		CantBeFrozen = TRUE,
		EvolvedRecipe = FruitSalad:2;Pancakes:2;Waffles:2;HotDrink:2;HotDrinkRed:2;HotDrinkWhite:2;HotDrinkSpiffo:2;HotDrinkTea:2;Beverage:5;Beverage2:5;Oatmeal:2;PieSweet:5;Cake:5,
		FoodType = Milk,
		Packaged = TRUE,
		DaysFresh = 4,
		DaysTotallyRotten = 7,
		HungerChange = -10,
		ThirstChange = -10,
		Calories = 472,
		Carbohydrates = 23.6,
		Lipids = 23.6,
		Proteins = 23.6,
		CustomContextMenu = Drink,
		StaticModel = CanOpenMilk,
		WorldStaticModel = CanOpenMilk,
		CustomEatSound = DrinkingFromCan,
		Tags = Milk;HasMetal,
		CannedFood = TRUE,
		EatType = can,
		ReplaceOnUse = TinCanEmpty,
		EvolvedRecipeName = Evaporated Milk,
	}

See also