Pot of Soup: Difference between revisions

From PZwiki
m (clean up, replaced: wikitable → pztable)
(Update code)
Line 82: Line 82:


== Code ==
== Code ==
<br>
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
<nowiki>
{{Retrieved|version=41|incver=50}}
item PotOfSoup
<pre> item PotOfSoup
HungerChange = -30,
HungerChange = -30,
Weight = 4,
ThirstChange = -30,
Type = Food,
Weight = 4,
IsCookable = TRUE,
Type = Food,
UnhappyChange = -20,
IsCookable = TRUE,
MinutesToBurn = 100,
UnhappyChange = -20,
DisplayName = Pot of Soup,
MinutesToBurn = 100,
ReplaceOnUse = Pot,
DisplayName = Pot of Soup,
Icon = PotFull,
ReplaceOnUse = Pot,
MinutesToCook = 50,
Icon = PotFull,
BoredomChange = -10,
MinutesToCook = 50,
        DaysTotallyRotten = 5,
DaysTotallyRotten = 5,
        DaysFresh = 3,
DaysFresh = 3,
        CustomContextMenu = Drink,
CustomContextMenu = Drink,
        CustomEatSound = PZ_DrinkingFromBottle,
CustomEatSound = DrinkingFromBottle,
        Carbohydrates = 20,
Carbohydrates = 20,
        Proteins = 7.5,
Proteins = 7.5,
        Lipids = 2.5,
Lipids = 2.5,
        Calories = 125,
Calories = 125,
    </nowiki>
StaticModel = CookingPot,
EatType = Pot,
</pre>


{{Navbox/Consumables}}
{{Navbox/Consumables}}

Revision as of 19:54, 10 July 2021


PlushSpiffo.pngThis article is about soup created from canned soup. For soup created from ingredients, see [[soup (recipe)]].

A pot of soup is a perishable food item which is crafted from canned soup and an empty cooking pot.
A pot of soup can be divided into 2 or 4 bowls. A 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. This process is slower when the item is in a refrigerator.

Nutritional information

Template:Consumables2


Its nutritional values are as follows:
Carbohydrates = 20
Proteins = 7.5
Lipids = 2.5
Calories = 125


Evolved recipes

The below values represent a pot of cooked soup (fresh) being divided among bowls.

Evolved Recipes
Name Hunger Added Unhappiness Bonus Boredom Bonus
2 Bowls of Soup -15 -20 -10
4 Bowls of Soup -9 -20 -10

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.50

	item PotOfSoup
		HungerChange		= -30,
		ThirstChange		= -30,
		Weight			= 4,
		Type			= Food,
		IsCookable		= TRUE,
		UnhappyChange		= -20,
		MinutesToBurn		= 100,
		DisplayName		= Pot of Soup,
		ReplaceOnUse		= Pot,
		Icon			= PotFull,
		MinutesToCook		= 50,
		DaysTotallyRotten	= 5,
		DaysFresh		= 3,
		CustomContextMenu	= Drink,
		CustomEatSound		= DrinkingFromBottle,
		Carbohydrates		= 20,
		Proteins		= 7.5,
		Lipids			= 2.5,
		Calories		= 125,
		StaticModel		= CookingPot,
		EatType			= Pot,

Template:Navbox/Consumables