More actions
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 |
---|---|---|---|---|---|
Opened Canned Evaporated Milk |
Canned Evaporated Milk ×1 | 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.
State | Icon | Hunger | Boredom | Unhappiness | Sickness chance |
---|---|---|---|---|---|
Fresh | -10 | - | - | - | |
Stale | -8 | +10 | +10 | - | |
Rotten | -4 | +20 | +20 | 100% |
Crafting
- Main article: Cooking
Evolved recipes
Canned Evaporated Milk is a cooking ingredient.
Product | Nutrition |
---|---|
Fruit Salad |
2 |
Pie (savory) |
5 |
Cake (crafted) |
5 |
Pancakes (crafted) |
2 |
Waffles (crafted) |
2 |
Oatmeal |
2 |
Beverage |
5 |
Location
The loot distributions can be found in the table(s) below.
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.
Building/Room | Container | Effective chance |
---|---|---|
bakerykitchen | counter | 11.21% |
breakroom | counter | 11.21% |
breakroom | overhead | 11.21% |
breakroom | shelves | 11.21% |
burgerkitchen | counter | 11.21% |
cafe | metal_shelves | 11.21% |
cafekitchen | counter | 11.21% |
cafekitchen | shelves | 11.21% |
cafeteriakitchen | counter | 11.21% |
deepfry_kitchen | counter | 11.21% |
dinerkitchen | counter | 11.21% |
donut_dining | counter | 11.21% |
donut_kitchen | counter | 11.21% |
FoodCache1 | FoodBox | 35.99% |
garagestorage | crate | 23.67% |
generalstore | crate | 11.21% |
generalstore | shelves | 11.21% |
generalstorestorage | crate | 11.21% |
generalstorestorage | shelves | 11.21% |
gigamart | crate | 11.21% |
gigamart | shelves | 11.21% |
gigamartkitchen | counter | 11.21% |
grocery | crate | 11.21% |
grocery | shelves | 11.21% |
grocery | smallcrate | 11.21% |
grocerystorage | crate | 3.04% |
grocerystorage | metal_shelves | 3.04% |
grocerystorage | smallcrate | 3.04% |
kitchen | counter | 11.21% |
kitchen | crate | 23.67% |
kitchen | overhead | 11.21% |
kitchen | shelves | 11.21% |
kitchen_crepe | counter | 11.21% |
livingroom | counter | 11.21% |
livingroom | overhead | 11.21% |
restaurantkitchen | counter | 11.21% |
SafehouseLoot | counter | 11.21% |
spiffoskitchen | counter | 11.21% |
storageunit | crate | 23.67% |
SurvivorCache1 | counter | 11.21% |
SurvivorCache2 | counter | 11.21% |
Canned Evaporated Milk can often be found in kitchen counters, and can be rarely found as "Trash" when foraging.
History
Base.CannedMilk
Version | Description |
---|---|
Build 41.78 | Calories changed from 110 to 472 .CannedFood added with value TRUE .Nutrition changed from 13 to 23.6 .DisplayName changed from Canned Condensed Milk to Canned Evaporated Milk .Nutrition changed from 2.5 to 23.6 .Proteins changed from 8 to 23.6 .Item tag added with value HasMetal . |
Build 41.72 | Released on this version. |
Code
Base.CannedMilk
Source: ProjectZomboid\media\scripts\items_food.txt
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,
}
Base.CannedMilkOpen
Source: ProjectZomboid\media\scripts\items_food.txt
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,
}