Simple Bowl of Soup: Difference between revisions

From PZwiki
Simple Bowl of Soup
(→‎top: New infobox upgrade - Food)
(infobox updates & added CodeBox)
Line 5: Line 5:
{{Infobox item
{{Infobox item
|name=Simple Bowl of Soup
|name=Simple Bowl of Soup
|model=BowlFull.png
|icon=BowlFull.png
|image_width=128px
|icon=PotFull.png
|icon_name=Simple Soup
|alternate_link=Simple Soup
|alternate_link=Simple Soup
|weight=3
|weight=1
|category=Food
|category=Food
|hunger_change=-22
|hunger_change=-22
Line 18: Line 15:
|proteins=
|proteins=
|lipids=
|lipids=
|boredom_change=-3
|unhappy_change=-4
|unhappy_change=-4
|cook_minutes=
|cook_minutes=25
|burn_minutes=
|burn_minutes=30
|days_fresh=1
|days_fresh=1
|days_rotten=3
|days_rotten=3
|item_id=
|item_id=
}}
}}
The '''Simple Bowl of Soup''' was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
A '''simple bowl of soup''' was originally a perishable [[food]] in Project Zomboid that was removed due to an introduction of a better crafting system.


==Former description==
==Former description==
Line 31: Line 29:


==Effects==
==Effects==
[[Boredom]]: -3
*[[Moodles#Bored|Boredom]]: -3
*[[Moodles#Unhappy|Unhappiness]]: -4


==Former crafting==
==Former crafting==
Line 58: Line 57:


==Code==
==Code==
<pre>
{{CodeBox
item SimpleBowl4
| {{CodeSnip
Type = Food,
  | lang = java
DisplayName = Simple Bowl of Soup,
  | line = true
Icon = BowlFull,
  | start = 416
Weight = 3,
  | source = items.txt
IsCookable = true,
  | retrieved = true
MinutesToCook = 24,
  | version = 2.9.7
MinutesToBurn = 30,
  | version_link = RC 2.9.7
Count = 4,
  | hidecat = true
HungerChange = -22,
  | code =
ReplaceOnUse = Bowl,
item SimpleBowl4
BoredomChange = -3,
{
UnhappyChange = -4,
Count = 4,
DaysFresh = 1,
HungerChange = -14,
DaysTotallyRotten = 3,
Type = Food,
</pre>
DisplayName = Simple Bowl of Soup,
MinutesToCook = 24,
Weight = 1,
IsCookable = TRUE,
DaysTotallyRotten = 3,
UnhappyChange = -4,
MinutesToBurn = 30,
Icon = BowlFull,
ReplaceOnUse = Bowl,
DaysFresh = 1,
BoredomChange = -3,
}
}}}}


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

Revision as of 12:32, 29 January 2024

Template:Header/sandbox2

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.
Simple Bowl of Soup
Simple Bowl of Soup
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
1
Properties
Days fresh
1 days
Days until rotten
3 days
Nutrition
HungerMoodle Icon Hungry.png
-22
Effect
UnhappinessMoodle Icon Unhappy.png
-4
BoredomMoodle Icon Bored.png
-3
Cooking
Time until cooked
25 minutes
Time until burned
30 minutes

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

Former description

A classic bowl of satisfying soup. Can be crafted with Bowls and Soup for portable use, but consumes less hunger.

Effects

Former crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
BowlFull.png
Simple Bowl of Soup x4
none PotFull.png
Soup
(consumed)
Bowl.png
Bowl x4
(consumed)
Heat source.gif
Heat source
(cooked:24min burned:30min)

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 SimpleBowl4
	{
		Count	=	4,
		HungerChange	=	-14,
		Type	=	Food,
		DisplayName	=	Simple Bowl of Soup,
		MinutesToCook	=	24,
		Weight	=	1,
		IsCookable	=	TRUE,
		DaysTotallyRotten	=	3,
		UnhappyChange	=	-4,
		MinutesToBurn	=	30,
		Icon	=	BowlFull,
		ReplaceOnUse	=	Bowl,
		DaysFresh	=	1,
		BoredomChange	=	-3,
	}