Canned Mushroom Soup

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Mushroom Soup
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Mushroom Soup
TinnedMushroom Model.png
TinnedMushroomOpen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
Yes
Days fresh
2 days
Days until rotten
4 days
Nutrition
HungerMoodle Icon Hungry.png
-10
ThirstMoodle Icon Thirsty.png
-4
CaloriesCalories
160
CarbohydratesCarbohydrates
19
ProteinsProteins
3
FatFat
8
Technical
Item ID
Base.CannedMushroomSoup
Base.CannedMushroomSoup
Open

Canned mushroom soup (written as MUSHROOM SOUP on the model) is a non-perishable food item.

Usage

Canned mushroom soup can only be opened with a can opener, and once opened becomes perishable.

Product Ingredients Tools Requirements Workstation XP
CannedMushroomSoupOpen.png
Opened Canned Mushroom Soup
CannedMushroomSoup.png Canned Mushroom Soup ×1 CanOpener.png
Can Opener
none none none

Consumable properties

Opened canned mushroom soup 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

CannedMushroomSoupOpen.png
Hunger: -10


CannedMushroomSoupOpen.png
Hunger: -7
Boredom: +10
Unhappiness: +10

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

Crafting

Main article: Cooking

Evolved recipes

Canned mushroom soup is a cooking ingredient.

Product Nutrition
Soup
Soup
10
Stew
Stew
10
Salad
Salad
10
Stir Fry
Stir Fry
10
Roasted Vegetables
Roasted Vegetables
10
Burger
Burger
5
Rice Pot/Saucepan
Rice Pot/Saucepan
10
Pasta Pot/Saucepan
Pasta Pot/Saucepan
10
Omelette
Omelette
5

Distribution

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

CannedMushroomSoup 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
Bag_FoodCanned Bag_FoodCanned 23.28%
Bag_SurvivorBag Bag_SurvivorBag 23.28%
FoodCache1 FoodBox 62.98%
GroceryBag1 GroceryBag1 1.01%
GroceryBag3 GroceryBag3 6.41%
SafehouseLoot counter 23.28%
SurvivorCache1 SurvivorCrate 23.28%
SurvivorCache1 counter 23.28%
SurvivorCache2 SurvivorCrate 23.28%
SurvivorCache2 counter 23.28%
garagestorage crate 23.28%
generalstore crate 23.28%
generalstore shelves 23.28%
generalstorestorage crate 23.28%
generalstorestorage shelves 23.28%
gigamart crate 23.28%
gigamart shelves 23.28%
grocery crate 23.28%
grocery shelves 23.28%
grocery smallcrate 23.28%
grocerystorage crate 3.98%
grocerystorage metal_shelves 3.98%
grocerystorage smallcrate 3.98%
kitchen counter 23.28%
kitchen crate 23.28%
kitchen overhead 23.28%
kitchen shelves 23.28%
livingroom counter 23.28%
livingroom overhead 23.28%
storageunit crate 23.28%
Foraging
Amount Skill level Biomes Weather modifiers Month modifiers
Snow Rain Day Night Months available Bonus months Malus months
1 0 all with 1 chance - - - - all - -

Canned mushroom soup can often be found in kitchen counters.

Code

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

CannedMushroomSoup.png Base.CannedMushroomSoup
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedMushroomSoup
	{
		DisplayName = Canned Mushroom Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedMushroomSoup,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 160,
		Carbohydrates = 19,
		Lipids = 8,
		Proteins = 3,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedMushroom,
		Tags = HasMetal,
	}

CannedMushroomSoupOpen.png Base.CannedMushroomSoupOpen
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedMushroomSoupOpen
	{
		DisplayName = Opened Canned Mushroom Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedMushroomSoupOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Omelette:5;Soup:10;Stew:10;Stir fry Griddle Pan:10;Stir fry:10;Burger:5;Salad:10;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10,
		EvolvedRecipeName = Mushroom,
		FoodType = Mushroom,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -10,
		ThirstChange = -4,
		Calories = 160,
		Carbohydrates = 19,
		Lipids = 8,
		Proteins = 3,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenMushroom,
		Tags = HasMetal,
	}

See also