Bowl of Soup: Difference between revisions

From PZwiki
mNo edit summary
(added new infobox and updated code. Still need to check where the nutritional values come from)
Line 1: Line 1:
{{languages|Bowl of Soup}}
{{languages|Bowl of Soup}}
{{header|The Game World|Items|Consumables|Perishable Food|type=Food|version=Version 38|incver=40}}{{Consumables
{{header|The Game World|Items|Consumables|Perishable Food|type=Food|version=Version 40|incver=6}}{{Infobox food
|image = Full_Soup_bowl.png
|display_name=Bowl of Soup
|hunger = -15
|name_colour=Food
|weight = 1}}
|name_text_colour=Food
{{About|soup created from [[Canned Soup|canned soup]]|soup created from ingredients|[[Recipe Ingredients#Soup & Stew Ingredients|soup (recipe)]]}}
|image=BowlFull_120px.png
|weight=1
|hunger_change=-15
|thirst_change=-15 {{Upcoming|ver=40}}
|unhappy_change=-20
|boredom_change=-10
|cook_minutes=15
|burn_minutes=25
|days_fresh=1
|days_rotten=3
|class_name=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 3 in-game days to rot. This process is slower when the item is in a refrigerator.
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 3 in-game days to rot. This process is slower when the item is in a refrigerator.


== Crafting ==
== Crafting ==
{| class="wikitable sortable" style="text-align:center;"
{{Crafting table header}}
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
{{RecipeLookup|2014}}
{{RecipeLookup|2014}}
|}
{{Crafting table footer}}


== Code ==
== Code ==
<nowiki>
{{Retrieved|version=40|incver=6}}
item SoupBowl
<pre> item SoupBowl
HungerChange = -15,
HungerChange = -15,
ThirstChange = -15,
Type = Food,
Type = Food,
DisplayName = Bowl of Soup,
DisplayName = Bowl of Soup,
Line 33: Line 41:
BoredomChange = -10,
BoredomChange = -10,
CustomContextMenu = Drink,
CustomContextMenu = Drink,
CustomEatSound = PZ_DrinkingFromBottle,
CustomEatSound = PZ_DrinkingFromBottle,</pre>
}</nowiki>


{{Navbox/Consumables}}
{{Navbox/Consumables}}

Revision as of 12:51, 10 August 2018

Bowl of Soup
Bowl of Soup
General
Category Food
Encumbrance
Heavy Load
1
Days until stale 1 days
Days until rotten 3 days
Nutrition
Hunger
Hunger
-15
Thirst
Thirst
-15 Template:Upcoming
Effect
Unhappiness
Unhappiness
-20
Boredom
Boredom
-10
Cooking
Time until cooked 15 minutes
Time until burned 25 minutes
Technical details
Item ID Base.SoupBowl
PlushSpiffo.pngThis article is about soup created from canned soup. For soup created from ingredients, see [[soup (recipe)]].

A bowl of soup is a perishable food item which is created from a pot of soup divided among 2 or 4 bowls. A bowl of soup takes one in-game day to go stale, and 3 in-game days to rot. This process is slower when the item is in a refrigerator.

Crafting

Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Code

Retrieved: Build 40.6

	item SoupBowl
		HungerChange		= -15,
		ThirstChange		= -15,
		Type			= Food,
		DisplayName		= Bowl of Soup,
		MinutesToCook		= 15,
		Weight			= 1,
		IsCookable		= TRUE,
		DaysTotallyRotten	= 3,
		UnhappyChange		= -20,
		MinutesToBurn		= 25,
		Icon			= BowlFull,
		ReplaceOnUse		= Bowl,
		DaysFresh		= 1,
		BoredomChange		= -10,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= PZ_DrinkingFromBottle,

Template:Navbox/Consumables