Bowl of Soup: Difference between revisions

From PZwiki
(Brought into Navigation Table (How was this page missed?), updated info to current version. Removed old formatting (effects etc). Corrected consumable stats. Added improve notice (don't know rot times or effects on soup))
m (Automated CodeBox update)
(29 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{languages|Bowl of Soup}}
{{Header|Project Zomboid|Items|Food|Prepared food}}
{{header|The Game World|Items|Consumables|Perishable Food|type=Food|version=Version 38|incver=40}}{{Consumables
{{Page version|41.51}}
|image = Full_Soup_bowl.png
{{Infobox item
|hunger = -15
|name=Bowl of Soup
|weight = 1
|model=BowlSoup_Model.png
}}{{Notice|Improve}}
|icon=BowlFull.png
A bowl of soup created by dividing soup created in a pot. It is crafted by putting a pot of soup and 4 bowls in the crafting area, and this recipe will yield 4 bowls of soup.
|icon_name=Bowl of Soup
The amount of soup hunger depends on the soup made and the parts put in. -15 hunger is the maximum for each bowl.
|weight=1
|hunger_change=-15
|thirst_change=-15
|calories=124
|lipids=4.7
|proteins=6.3
|carbohydrates=15
|unhappy_change=-20
|cook_minutes=15
|burn_minutes=25
|days_fresh=1
|days_rotten=3
|item_id=Base.SoupBowl
}}


== Crafting ==
{{About|soup created from [[Canned Soup|canned soup]]|soup custom-made by a character|Recipe Ingredients#Soup & Stew Ingredients}}
{| class="wikitable sortable" style="text-align:center;"
A '''bowl of soup''' is a [[Food#Perishable|perishable]] food item.
|-
 
! Name
==Usage==
! class="unsortable" | Recipe
A bowl of soup takes one in-game day to go stale, and three in-game days to rot. This process is slower when the item is in a refrigerator.
! class="unsortable" | Description
 
{{RecipeLookup|2014}}
==Crafting==
A bowl of soup is created from a [[Pot of Soup|pot of soup]] divided among 2 or 4 [[bowl]]s.
 
===Cooking===
{{Crafting header|type=food|ing=2}}
{{Crafting cooking|220|ing=2}}
|}
 
===Serve===
{{Crafting header|type=food|ing=2}}
{{Crafting cooking|405|ing=2}}
{{Crafting cooking|407|ing=2}}
|}
|}


== Code ==
== Code ==
<nowiki>
{{CodeBox
item SoupBowl
| {{CodeSnip
HungerChange = -15,
  | lang = java
Type = Food,
  | line = true
DisplayName = Bowl of Soup,
  | start = 3225
MinutesToCook = 15,
  | source = items_food.txt
Weight = 1,
  | retrieved = true
IsCookable = TRUE,
  | version = 41.78.16
DaysTotallyRotten = 3,
  | code =
UnhappyChange = -20,
item SoupBowl
MinutesToBurn = 25,
{
Icon = BowlFull,
DisplayName = Bowl of Soup,
ReplaceOnUse = Bowl,
DisplayCategory = Food,
DaysFresh = 1,
Type = Food,
BoredomChange = -10,
Weight = 1,
CustomContextMenu = Drink,
Icon = BowlFull,
CustomEatSound = PZ_DrinkingFromBottle,
EatType = 2handbowl,
}</nowiki>
IsCookable = TRUE,
ReplaceOnUse = Bowl,
MinutesToCook = 15,
MinutesToBurn = 25,
DaysFresh = 1,
DaysTotallyRotten = 3,
HungerChange = -15,
ThirstChange = -15,
UnhappyChange = -20,
Calories = 124,
Carbohydrates = 15,
Lipids = 4.7,
Proteins = 6.3,
CustomContextMenu = Drink,
CustomEatSound = EatingSoup,
StaticModel = Bowl,
WorldStaticModel = BowlSoup_Ground,
}
}}
}}
 
==See also==
*[[Recipe ingredients#Soup & stew ingredients|Soup and stew ingredients]]
 
{{Navbox food}}


{{Navbox/Consumables}}
[[Category:Perishable food]]

Revision as of 01:01, 25 March 2024

Spiffo controlyourself.png
This page was last updated for an older version (41.51).
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.
Bowl of Soup
BowlSoup Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
1
Properties
Days fresh
1 days
Days until rotten
3 days
Nutrition
HungerMoodle Icon Hungry.png
-15
ThirstMoodle Icon Thirsty.png
-15
CaloriesCalories
124
CarbohydratesCarbohydrates
15
ProteinsProteins
6.3
FatFat
4.7
Effect
UnhappinessMoodle Icon Unhappy.png
-20
Cooking
Time until cooked
15 minutes
Time until burned
25 minutes
Technical
Item ID
Base.SoupBowl
PlushSpiffo.pngThis article is about soup created from canned soup. For soup custom-made by a character, see Recipe ingredients.

A bowl of soup is a perishable food item.

Usage

A bowl of soup takes one in-game day to go stale, and three in-game days to rot. This process is slower when the item is in a refrigerator.

Crafting

A bowl of soup is created from a pot of soup divided among 2 or 4 bowls.

Cooking

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Bowl of Soup (Cooked)
Bowl of Soup (Cooked)
2.5 Cooking none Heat source.gif
Heat source
(Cooked: 15 mins)
Bowl of Soup (Uncooked)
Bowl of Soup (Uncooked)
(consumed)

Serve

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
BowlFull.png
Bowl of Soup x2
0 XP none Bowl.png
Bowl x2
(consumed)
PotFull.png
Pot of Soup
(consumed)
BowlFull.png
Bowl of Soup x4
0 XP none Bowl.png
Bowl x4
(consumed)
PotFull.png
Pot of Soup
(consumed)

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item SoupBowl
	{
		DisplayName = Bowl of Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1,
		Icon = BowlFull,
		EatType = 2handbowl,
		IsCookable = TRUE,
		ReplaceOnUse = Bowl,
		MinutesToCook = 15,
		MinutesToBurn = 25,
		DaysFresh = 1,
		DaysTotallyRotten = 3,
		HungerChange = -15,
		ThirstChange = -15,
		UnhappyChange = -20,
		Calories = 124,
		Carbohydrates = 15,
		Lipids = 4.7,
		Proteins = 6.3,
		CustomContextMenu = Drink,
		CustomEatSound = EatingSoup,
		StaticModel = Bowl,
		WorldStaticModel = BowlSoup_Ground,
	}

See also