Complex Bowl of Soup: Difference between revisions

From PZwiki
Complex Bowl of Soup
(→‎top: New infobox upgrade - Food)
(infobox updates & added CodeBox)
Line 5: Line 5:
{{Infobox item
{{Infobox item
|name=Complex Bowl of Soup
|name=Complex Bowl of Soup
|model=BowlFull.png
|icon=BowlFull.png
|image_width=128px
|icon=PotFull.png
|icon_name=Complicated Soup
|icon_name=Complicated Soup
|alternate_link=Complicated Soup
|weight=3
|weight=3
|category=Food
|category=Food
Line 19: Line 16:
|lipids=
|lipids=
|unhappy_change=-8
|unhappy_change=-8
|cook_minutes=
|boredom_change=-7
|burn_minutes=
|cook_minutes=33
|burn_minutes=48
|days_fresh=1
|days_fresh=1
|days_rotten=3
|days_rotten=3
|item_id=Base.ComplexBowl
|item_id=Base.ComplexBowl4
}}The Complex Bowl of Soup was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
}}The 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==
==Nutritional information==
[[Boredom]]: -7
*[[Moodles#Bored|Boredom]]: -7
*[[Moodles#Unhappy|Unhappiness]]: -8


==Code==
==Code==
<pre>
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 398
  | source = items.txt
  | retrieved = true
  | version = 2.9.7
  | version_link = RC 2.9.7
  | hidecat = true
  | code =
item ComplexBowl4
item ComplexBowl4
Type = Food,
Type = Food,
Line 46: Line 55:
DaysFresh = 1,
DaysFresh = 1,
DaysTotallyRotten = 3,
DaysTotallyRotten = 3,
</pre>
}}}}


{{Navbox food}}
{{Navbox food}}

Revision as of 11:50, 29 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (39.67.5).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
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

The 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
	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,