Hearty Soup: Difference between revisions

From PZwiki
Hearty Soup
m (corrected name of future page)
m (Automated Formatting)
(28 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Consumables
{{Page version|41.78.16}}
|image = Pot of Soup.png
{{Obsolete|item=true|2=Recipe Ingredients#Soup & Stew Ingredients}}
|hunger = -160
{{Infobox item
|weight = 7.5
|name=Hearty Soup
|icon=PotFull.png
|weight=6.5
|category=Food
|hunger_change=-75
|unhappy_change=-25
|cook_minutes=110
|burn_minutes=160
|item_id=Base.HeartySoup
}}
}}
The hearty soup is an item that is impossible to create because it uses so 4 ingredients and a bowl, and the crafting area is only able to support 4 items total.  
'''Heart soup''' was originally a non-perishable food entry within the Project Zomboid code that was impossible to make and was replaced due to a introduction of a better crafting system.


'''Note:''' This item has been replaced by the custom [[Soup Recipe|soup]] & [[Pot of Stew|stew]] recipes.  Though the code still exists in the game, there is no longer a mechanism to create hearty soup.
==Former description==
The hearty soup is an item that is impossible to create because it uses so 4 ingredients and a bowl, and the crafting area is only able to manage 4 items total.


== Effects ==
==Effects==
[[Boredom]]: -20<br>
[[Bored|Boredom]]: -20<br>
[[Hunger]]: -160<br>
[[Unhappy|Unhappiness]]: -25
[[Unhappy]]: -25


==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 368
  | source = items.txt
  | retrieved = true
  | version = 2.9.7
  | version_link = RC 2.9.7
  | hidecat = true
  | code =
item HeartySoup
{
HungerChange = -75,
Weight = 6.5,
Type = Food,
IsCookable = TRUE,
UnhappyChange = -25,
MinutesToBurn = 160,
DisplayName = Hearty Soup,
ReplaceOnUse = Pot,
Icon = PotFull,
MinutesToCook = 110,
BoredomChange = -20,
}
}}}}


 
==See also==
 
{{Navbox items|food}}
 
== Code ==
<nowiki>item HeartySoup
{
Type = Food,
DisplayName = Hearty Soup,
Icon = PotFull,
Weight = 7.5,
IsCookable = true,
MinutesToCook = 110,
MinutesToBurn = 160,
HungerChange = -168,
BoredomChange = -20,
UnhappyChange = -25,
ReplaceOnUse = Pot
}</nowiki>
 
{{Navbox/Consumables}}
[[Category:Consumables]]
[[Category:Food]]
[[Category:Cookable Food]]
[[Category:Non-Perishable Food]]
[[Category:Version 0.2.0p]]

Revision as of 09:09, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
BoxSmall.png
This item has been removed from the game.
It has been replaced by Recipe ingredients.
Hearty Soup
Hearty Soup
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
6.5
Nutrition
HungerMoodle Icon Hungry.png
-75
Effect
UnhappinessMoodle Icon Unhappy.png
-25
Cooking
Time until cooked
110 minutes
Time until burned
160 minutes
Technical
Item ID
Base.HeartySoup

Heart soup was originally a non-perishable food entry within the Project Zomboid code that was impossible to make and was replaced due to a introduction of a better crafting system.

Former description

The hearty soup is an item that is impossible to create because it uses so 4 ingredients and a bowl, and the crafting area is only able to manage 4 items total.

Effects

Boredom: -20
Unhappiness: -25

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: RC 2.9.7
item HeartySoup
	{
		HungerChange	=	-75,
		Weight	=	6.5,
		Type	=	Food,
		IsCookable	=	TRUE,
		UnhappyChange	=	-25,
		MinutesToBurn	=	160,
		DisplayName	=	Hearty Soup,
		ReplaceOnUse	=	Pot,
		Icon	=	PotFull,
		MinutesToCook	=	110,
		BoredomChange	=	-20,
	}

See also