Bowl of Soup: Difference between revisions

From PZwiki
mNo edit summary
m (Version bump)
 
(30 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 40|incver=6}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Bowl of Soup
{{Infobox item
|name_colour=Food
|name=Bowl of Soup
|name_text_colour=Food
|model=BowlSoup_Model.png
|image=BowlFull_120px.png
|icon=BowlFull.png
|icon_name=Bowl of Soup
|weight=1
|weight=1
|hunger_change=-15
|hunger_change=-15
|thirst_change=-15 {{Upcoming|ver=40}}
|thirst_change=-15
|calories=124
|lipids=4.7
|proteins=6.3
|carbohydrates=15
|unhappy_change=-20
|unhappy_change=-20
|boredom_change=-10
|cook_minutes=15
|cook_minutes=15
|burn_minutes=25
|burn_minutes=25
|days_fresh=1
|days_fresh=1
|days_rotten=3
|days_rotten=3
|class_name=Base.SoupBowl
|item_id=Base.SoupBowl
}}{{About|soup created from [[Canned Soup|canned soup]]|soup created from ingredients|[[Recipe Ingredients#Soup & Stew Ingredients|soup (recipe)]]}}
}}
A '''bowl of soup''' is a [[Food#Perishable|perishable]] food item which is created from a [[Pot of Soup|pot of soup]] divided among 2 or 4 [[bowl]]s. 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.
{{About|soup created from [[Canned Soup|canned soup]]|soup custom-made by a character|Recipe Ingredients#Soup & Stew Ingredients}}
A '''bowl of soup''' is a [[Food#Perishable|perishable]] food item.


== Crafting ==
==Usage==
{{Crafting table header}}
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.
{{RecipeLookup|2014}}
 
{{Crafting table footer}}
==Crafting==
A bowl of soup is created from a [[Pot of Soup|pot of soup]] divided among 2 or 4 [[bowl]]s.
 
===Cooking===
{{Crafting/sandbox2
|bowl_of_soup_cooked
}}
 
===Serve===
{{Crafting/sandbox2
|2_bowl_of_soup
|4_bowl_of_soup
}}


== Code ==
== Code ==
{{Retrieved|version=40|incver=6}}
{{CodeBox
<pre> item SoupBowl
| {{CodeSnip
HungerChange = -15,
  | lang = java
ThirstChange = -15,
  | line = true
Type = Food,
  | start = 3225
DisplayName = Bowl of Soup,
  | source = items_food.txt
MinutesToCook = 15,
  | retrieved = true
Weight = 1,
  | version = 41.78.16
IsCookable = TRUE,
  | code =
DaysTotallyRotten = 3,
item SoupBowl
UnhappyChange = -20,
{
MinutesToBurn = 25,
DisplayName = Bowl of Soup,
Icon = BowlFull,
DisplayCategory = Food,
ReplaceOnUse = Bowl,
Type = Food,
DaysFresh = 1,
Weight = 1,
BoredomChange = -10,
Icon = BowlFull,
CustomContextMenu = Drink,
EatType = 2handbowl,
CustomEatSound = PZ_DrinkingFromBottle,</pre>
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 items|prepared_food}}
 


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

Latest revision as of 06:35, 15 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]
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 Ingredients Tools Requirements Workstation XP
BowlFull.png
Bowl of Soup (Cooked)
BowlFull.png Bowl of Soup (Uncooked) ×1 none none Heat source.gif
Heat source
2.5 Cooking

Serve

Product Ingredients Tools Requirements Workstation XP
BowlFull.png
Bowl of Soup ×2
Bowl.png Bowl ×2
PotFull.png Soup ×1
none none none none
BowlFull.png
Bowl of Soup ×4
Bowl.png Bowl ×4
PotFull.png Soup ×1
none none none none

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