Complex Bowl of Soup: Difference between revisions

From PZwiki
Complex Bowl of Soup
No edit summary
m (Automated Formatting)
(29 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Consumables
{{Page version|41.78.16}}
|image = Full_Soup_bowl.png
{{Obsolete|item=true|2=Recipe Ingredients#Soup & Stew Ingredients}}
|hunger = -53
{{Infobox item
|weight = 3
|name=Complex Bowl of Soup
|icon=BowlFull.png
|icon_name=Complicated Soup
|weight=3
|category=Food
|hunger_change=-53
|unhappy_change=-8
|boredom_change=-7
|cook_minutes=33
|burn_minutes=48
|days_fresh=1
|days_rotten=3
|item_id=Base.ComplexBowl4
}}
}}
== Effects ==
A '''complex bowl of soup''' was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
[[Boredom]]: -7<br>
[[Hunger]]: -53<br>
[[Unhappy]]: -8
== Code ==
<nowiki>item ComplexBowl4
{
Type = Food,
DisplayName = Complex Bowl of Soup,
Icon = BowlFull,
Weight = 3,
IsCookable = true,
MinutesToCook = 33,
MinutesToBurn = 48,
Count = 4,
HungerChange = -53,
ReplaceOnUse = Bowl,
BoredomChange = -7,
UnhappyChange = -8,
DaysFresh = 1,
DaysTotallyRotten = 3,
}</nowiki>


{{Navbox/Consumables}}
==Nutritional information==
[[Category:Consumables]]
*[[Bored|Boredom]]: -7
[[Category:Food]]
*[[Unhappy|Unhappiness]]: -8
[[Category:Perishable Food]]
 
[[Category:Version 0.2.0p]]
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 470
  | source = items.txt
  | retrieved = true
  | version = 2.9.7
  | version_link = RC 2.9.7
  | hidecat = true
  | code =
item ComplexBowl4
{
Count = 4,
HungerChange = -32,
Type = Food,
DisplayName = Complex Bowl of Soup,
MinutesToCook = 33,
Weight = 1,
IsCookable = TRUE,
DaysTotallyRotten = 3,
UnhappyChange = -8,
MinutesToBurn = 48,
Icon = BowlFull,
ReplaceOnUse = Bowl,
DaysFresh = 1,
BoredomChange = -7,
}
}}}}
 
==See also==
{{Navbox items|food}}

Revision as of 07:42, 14 April 2024

Project ZomboidItemsObsolete itemsComplex Bowl of Soup
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.
Complex Bowl of Soup
Complicated Soup
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
3
Properties
Days fresh
1 days
Days until rotten
3 days
Nutrition
HungerMoodle Icon Hungry.png
-53
Effect
UnhappinessMoodle Icon Unhappy.png
-8
BoredomMoodle Icon Bored.png
-7
Cooking
Time until cooked
33 minutes
Time until burned
48 minutes
Technical
Item ID
Base.ComplexBowl4

A complex bowl of soup was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.

Nutritional information

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 ComplexBowl4
	{
		Count	=	4,
		HungerChange	=	-32,
		Type	=	Food,
		DisplayName	=	Complex Bowl of Soup,
		MinutesToCook	=	33,
		Weight	=	1,
		IsCookable	=	TRUE,
		DaysTotallyRotten	=	3,
		UnhappyChange	=	-8,
		MinutesToBurn	=	48,
		Icon	=	BowlFull,
		ReplaceOnUse	=	Bowl,
		DaysFresh	=	1,
		BoredomChange	=	-7,
	}

See also