Pot of Soup: Difference between revisions

From PZwiki
(Update code)
(Bumped to 41.50 + cleanup)
Line 1: Line 1:
__NOTOC__
{{languages|Pot of Soup}}
{{languages|Pot of Soup}}
{{header|The Game World|Items|Consumables|Perishable Food|type=Food|version=Version 34|incver=28}}
{{header|The Game World|Items|Consumables|Perishable Food|type=Food|version=Version 41|incver=50}}
{{Consumables
{{Consumables
|image = Potofsoup.png
|image = Potofsoup.png
Line 9: Line 8:
|weight = 4.0
|weight = 4.0
}}{{About|soup created from [[Canned Soup|canned soup]]|soup created from ingredients|[[Recipe Ingredients#Soup & Stew Ingredients|soup (recipe)]]}}
}}{{About|soup created from [[Canned Soup|canned soup]]|soup created from ingredients|[[Recipe Ingredients#Soup & Stew Ingredients|soup (recipe)]]}}
A '''pot of soup''' is a [[Food#Perishable|perishable]] food item which is crafted from [[Canned Soup|canned soup]] and an empty [[Cooking Pot|cooking pot]]. <br>
A '''pot of soup''' is a [[Food#Perishable|perishable]] food item which is crafted from [[Canned Soup|canned soup]] and an empty [[Cooking Pot|cooking pot]].
 
A pot of soup can be divided into 2 or 4 [[bowl]]s. 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.
A pot of soup can be divided into 2 or 4 [[bowl]]s. 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 ==
==Usage==
{| border=0 align=left <!-- Table will be in middle of page without this line -->
===Consumable properties===
|
{{Consumables2
{{Consumables2
|image = Smallpotofsoup.png
|image = Smallpotofsoup.png
Line 44: Line 43:
|cooked image = Smallpotofsoup.png
|cooked image = Smallpotofsoup.png
}}
}}
|}


==Nutritional information==
'''Its nutritional values are as follows:'''<br>
'''Its nutritional values are as follows:'''<br>
Carbohydrates = 20 <br>
Carbohydrates = 20 <br>
Line 54: Line 51:
Calories = 125  
Calories = 125  


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


== Evolved recipes ==
The below values represent a pot of cooked soup (fresh) being divided among bowls.
<br>
{| class="pztable"
{| class="pztable"
|-
|-
Line 81: Line 75:
|}
|}


== Code ==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=50}}
{{Retrieved|version=41|incver=50}}

Revision as of 20:15, 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.

Usage

Consumable properties

Template:Consumables2

Nutritional information

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