Pot of Soup

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Pot of Soup
CookingPotSoup Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
3
Properties
Can boil water
True
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerUI Hunger.png
-30
ThirstUI Thristy.png
-30
CaloriesCalories
202
CarbohydratesCarbohydrates
25
ProteinsProteins
14
FatFat
4.5
Effect
UnhappinessUI Unhappy.png
-20
Cooking
Time until cooked
50 minutes
Time until burned
100 minutes
Technical
Item ID
Base.PotOfSoup
PlushSpiffo.pngThis article is about soup created from canned soup. For soup created from ingredients, see Soup.

Pot of soup is a perishable food item

Usage

Consumable properties

Pot of soup can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish. Pot of soup takes three in-game days to go stale, and five in-game days to rot, which is longer than the open can of soup from which it is created.

State Icon Hunger Boredom Unhappiness Sickness chance
Fresh Uncooked Pot of Soup (Fresh Uncooked) -30 - -20 -
Fresh Cooked Pot of Soup (Fresh Cooked) -39 - -20 -
Stale Uncooked Pot of Soup (Stale Uncooked) -23 +10 -10 -
Stale Cooked Pot of Soup (Stale Cooked) -23 +10 -10 -
Rotten Pot of Soup (Rotten) -13 +20 - 100%
Burned Pot of Soup (Burned) -10 +20 - 100%

Crafting

Main article: Cooking

Obtaining

Pot of soup is crafted from canned soup and an empty cooking pot.

Product Ingredients Tools Requirements Workstation XP
PotFull.png
Pot of Soup (Uncooked)
One of:
CannedMushroomSoup.png Canned Mushroom Soup ×1
Soup.png Canned Vegetable Soup ×1
CanOpener.png
Can Opener
none none none
PotFull.png
Pot of Soup (Uncooked)
One of:
CannedMushroomSoup.png Canned Mushroom Soup ×1
Soup.png Canned Vegetable Soup ×1
CanOpener.png
Can Opener
none none none

Cooking

Product Ingredients Tools Requirements Workstation XP
PotFull.png
Pot of Soup (Cooked)
PotFull.png Pot of Soup (Uncooked) ×1 none none Heat source.gif
Heat source
2.5 Cooking

What it can make

  • Pot of soup can be divided into 2 or 4 bowls.
Product Ingredients Tools Requirements Workstation XP
BowlFull.png
Bowl of Soup ×2
Bowl.png Bowl ×2
PotFull.png Soup ×1
none none none none
BowlFull.png
Bowl of Soup ×4
Bowl.png Bowl ×4
PotFull.png Soup ×1
none none none none
  • The below values represent a pot of cooked soup (fresh) being divided among bowls.
Evolved recipes
Name Hunger Added Unhappiness Bonus Boredom Bonus
BowlFull.png
2 Bowls of Soup
-15 -20 -10
BowlFull.png
4 Bowls of Soup
-9 -20 -10

History

Base.PotOfSoup

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item PotOfSoup
	{
		DisplayName = Pot of Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 3,
		Icon = PotFull,
		CookingSound = BoilingFood,
		EatType = Pot,
		IsCookable = TRUE,
		ReplaceOnUse = Pot,
		MinutesToCook = 50,
		MinutesToBurn = 100,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -30,
		ThirstChange = -30,
		UnhappyChange = -20,
		Calories = 202,
		Carbohydrates = 25,
		Lipids = 4.5,
		Proteins = 14,
		CustomContextMenu = Drink,
		CustomEatSound = EatingSoup,
		StaticModel = CookingPot,
		WorldStaticModel = CookingPotSoup_Ground,
		Tags = HasMetal,
	}