Hearty Soup: Difference between revisions

From PZwiki
Hearty Soup
m (→‎top: category & header updates)
m (Automated Formatting)
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{header/sandbox2|Project Zomboid|Items|Obsolete items}}
{{Page version|41.78.16}}
{{page version|41.78.16}}
{{Obsolete|item=true|2=Recipe Ingredients#Soup & Stew Ingredients}}
{{Obsolete|item=true|2=Recipe Ingredients#Soup & Stew Ingredients}}
{{Infobox food
{{Infobox item
|display_name=Hearty Soup
|name=Hearty Soup
|name_colour=Food
|icon=PotFull.png
|name_text_colour=Food
|weight=6.5
|image=PotFull.png
|image_width=128px
|alternate_image=BowlFull.png
|alternate_name=Hearty Bowl of Soup
|alternate_link=Hearty Bowl of Soup
|weight=7.5
|category=Food
|category=Food
|hunger_change=-160
|hunger_change=-75
|thirst_change=
|calories=
|carbohydrates=
|proteins=
|lipids=
|unhappy_change=-25
|unhappy_change=-25
|cook_minutes=
|cook_minutes=110
|burn_minutes=
|burn_minutes=160
|days_fresh=
|item_id=Base.HeartySoup
|days_rotten=
}}
|class_name=
'''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.
}}The Complex Bowl of 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==  
==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.  
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>
[[Unhappy|Unhappiness]]: -25


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


{{Navbox food}}
==See also==
{{Navbox items|food}}

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