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
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-30
ThirstMoodle Icon Thirsty.png
-30
CaloriesCalories
202
CarbohydratesCarbohydrates
25
ProteinsProteins
14
FatFat
4.5
Effect
UnhappinessMoodle Icon 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 Recipe ingredients.

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.

Fresh Stale Rotten
Uncooked

PotFull.png
Hunger: -30
Boredom: -10
Unhappiness: -20

PotFull.png
Hunger: -22
Boredom: +10
Unhappiness: +10

PotFull.png

Hunger: -13
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Cooked

PotFull.png
Hunger: -39
Boredom: -10
Unhappiness: -20

PotFull.png
Hunger: -22
Boredom: +10
Unhappiness: +10

PotFull.png
Hunger: -13
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Burned

PotFull.png
Hunger: -13
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

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

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,
	}

See also