Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Canned Vegetable Soup

From PZwiki
(Redirected from Canned Vegetable Soup)
Project ZomboidItemsFoodCanned foodCanned Vegetable 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 Vegetable Soup
CanClosedSoup Model.png
TinnedSoupOpen 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
HungerUI Hunger.png
-25
CaloriesCalories
125
CarbohydratesCarbohydrates
20
ProteinsProteins
7.5
FatFat
2.5
Technical
Item ID
Base.TinnedSoup
Base.TinnedSoupOpen

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

Usage

Canned vegetable soup can only be opened with a can opener, and once opened become perishable.

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

Consumable properties

Opened canned vegetable soup 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 Opened Canned Vegetable Soup (Fresh) -25 - - -
Stale Opened Canned Vegetable Soup (Stale) -19 +10 +10 -
Rotten Opened Canned Vegetable Soup (Rotten) -11 +20 +20 100%

Crafting

Main article: Cooking

Evolved recipes

Canned vegetable soup is a cooking ingredient.

Product Nutrition
PotFull.png
Soup
25
PotFull.png
Stew
25

Location

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

TinnedSoup distributionShow / 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 Duffel Bag 23.28%
Bag_SurvivorBag Large Backpack 23.28%
FoodCache1 FoodBox 62.98%
GroceryBag1 Plastic Bag 1.01%
GroceryBag3 Plastic Bag 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%

Canned vegetable soup can often be found in kitchen counters.

History

Base.TinnedSoup

Version Description
0.2.0q Released on or before this version.

Help PZwiki by adding to this history.

Code

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

Soup.png Base.TinnedSoup
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item TinnedSoup
	{
		DisplayName = Canned Vegetable Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = Soup,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 125,
		Carbohydrates = 20,
		Lipids = 2.5,
		Proteins = 7.5,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedSoup,
		Tags = HasMetal,
	}

SoupOpen.png Base.TinnedSoupOpen
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item TinnedSoupOpen
	{
		DisplayName = Opened Canned Vegetable Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = SoupOpen,
		CannedFood = TRUE,
		EatType = can,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		EvolvedRecipe = Soup:25;Stew:25,
		EvolvedRecipeName = Vegetable,
		FoodType = Vegetables,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -25,
		ThirstChange = -4,
		Calories = 125,
		Carbohydrates = 20,
		Lipids = 2.5,
		Proteins = 7.5,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCan,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenSoup,
		Tags = HasMetal,
	}

See also