Canned Vegetable Soup

From PZwiki
Revision as of 17:19, 9 September 2018 by Vaileasys (talk | contribs) (New infobox + new layout)
Project ZomboidItemsFoodNon-Perishable FoodCanned FoodCanned Vegetable Soup
Canned Soup
Canned Soup
Opened Canned Soup
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 2 days
Days until rotten 4 days
Packaged True
Nutrition
Hunger
Hunger
-25
Calories
Calories
125
Carbohydrates
Carbohydrates
20
Proteins
Proteins
7.5
Fat
Fat
2.5
Technical details
Item ID Base.TinnedSoup
Base.TinnedSoupOpen

Canned soup are a non-perishable food item.

Usage

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

Consumable properties

Opened canned soup can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish. Template:Consumables2

Crafting

Cooking

Main article: Cooking

Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

Canned soup is often found in kitchen counters.

Code

From items.txt (Project Zomboid directory/media/scripts/)

Canned Soup Soup.png Retrieved: Build 40.14

	item TinnedSoup
        	Weight		= 0.8,
        	Type		= Food,
        	DisplayName	= Canned Soup,
        	Icon		= Soup,
        	Carbohydrates 	= 20,
        	Proteins 	= 7.5,
        	Lipids 		= 2.5,
        	Calories 	= 125,
       		Packaged 	= TRUE,

Opened Canned Soup SoupOpen.png Retrieved: Build 40.14

	item TinnedSoupOpen
		HungerChange		= -25,
		Weight			= 0.8,
		Type			= Food,
		DisplayName		= Open Canned Soup,
		Icon			= SoupOpen,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= PZ_DrinkingFromBottle,
		DaysTotallyRotten	= 4,
        	DaysFresh 		= 2,
        	Carbohydrates 		= 20,
        	Proteins 		= 7.5,
        	Lipids 			= 2.5,
        	Calories 		= 125,
        	Packaged 		= TRUE,
        	ReplaceOnUse    	= TinCanEmpty,

See also

Template:Navbox/Consumables