Boring Bowl of Soup: Difference between revisions

From PZwiki
Boring Bowl of Soup
No edit summary
m (Automated Formatting)
(42 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Consumables
{{Page version|41.78.16}}
|image = Full_Soup_bowl.png
{{Obsolete|item=true|2=Recipe ingredients#Soup & Stew Ingredients}}
|hunger = -11
{{Infobox item
|weight = 3
|name=Boring Bowl of Soup
|icon=BowlFull.png
|weight=3
|category=Food
|hunger_change=-11
|unhappy_change=-3
|boredom_change=-2
|cook_minutes=13
|burn_minutes=25
|days_fresh=1
|days_rotten=3
|item_id=Base.BoringBowl4
}}
}}
The '''Boring Bowl of Soup''' was a previously craftable ingame item that has since been removed from Project Zomboid due to different crafting methods being introduced.


The information below was the last recorded values of the Boring Bowl of Soup on the wiki before removal.


== Effects ==
==Nutritional information==
[[Boredom]]: -2<br>
*[[Bored|Boredom]]: -2
[[Hunger]]: -11<br>
*[[Unhappy|Unhappiness]]: -3
[[Unhappy]]: -3


==Crafting==
{{Crafting header|ing=3}}
{{Crafting|ing=3
| product_image = [[File:BowlFull.png|link=Boring Bowl of Soup]]
| product_name = [[Boring Bowl of Soup]]
| product_quantity = x4
| rec =
| xp = <!-- Not present in the old template. Please fill in manually. -->
| f1 = [[File:PotFull.png|link=Boring Soup|Boring Soup]]
| i1 = [[Boring Soup]]
| q1 =
| tag1 = (consumed)
| f2 = [[File:Bowl.png|link=Bowl]]
| i2 = [[Bowl]]
| q2 = x4
| tag2 = (consumed)
| f3 = [[File:Heat source.gif|link=Heat source]]
| i3 = [[Heat source]]
| q3 =
| tag3 = (cooked:13min burned:25min)
| sl = ''none''
}}
|}


==Code==
{{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 BoringBowl4
{
Count = 4,
HungerChange = -8,
Type = Food,
DisplayName = Boring Bowl of Soup,
MinutesToCook = 13,
Weight = 1,
IsCookable = TRUE,
DaysTotallyRotten = 3,
UnhappyChange = -3,
MinutesToBurn = 25,
Icon = BowlFull,
ReplaceOnUse = Bowl,
DaysFresh = 1,
BoredomChange = -2,
}
}}}}


==See also==
*[[Broccoli Chicken Casserole]]


== Crafting ==
{{Navbox items|food}}
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
{{RecipeLookup|29}}
|}
 
== Code ==
<nowiki>item BoringBowl4
{
Type = Food,
DisplayName = Boring Bowl of Soup,
Icon = BowlFull,
Weight = 3,
IsCookable = true,
MinutesToCook = 13,
MinutesToBurn = 25,
Count = 4,
HungerChange = -11,
ReplaceOnUse = Bowl,
BoredomChange = -2,
UnhappyChange = -3,
DaysFresh = 1,
DaysTotallyRotten = 3,
}</nowiki>
 
{{Navbox/Consumables}}
[[Category:Consumables]]
[[Category:Food]]
[[Category:Cookable Food]]
[[Category:Perishable Food]]
[[Category:Version 0.2.0p]]

Revision as of 06:42, 14 April 2024

Project ZomboidItemsObsolete itemsBoring Bowl of Soup
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.
Boring Bowl of Soup
Boring Bowl of 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
-11
Effect
UnhappinessMoodle Icon Unhappy.png
-3
BoredomMoodle Icon Bored.png
-2
Cooking
Time until cooked
13 minutes
Time until burned
25 minutes
Technical
Item ID
Base.BoringBowl4

The Boring Bowl of Soup was a previously craftable ingame item that has since been removed from Project Zomboid due to different crafting methods being introduced.

The information below was the last recorded values of the Boring Bowl of Soup on the wiki before removal.

Nutritional information

Crafting

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

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 BoringBowl4
	{
		Count	=	4,
		HungerChange	=	-8,
		Type	=	Food,
		DisplayName	=	Boring Bowl of Soup,
		MinutesToCook	=	13,
		Weight	=	1,
		IsCookable	=	TRUE,
		DaysTotallyRotten	=	3,
		UnhappyChange	=	-3,
		MinutesToBurn	=	25,
		Icon	=	BowlFull,
		ReplaceOnUse	=	Bowl,
		DaysFresh	=	1,
		BoredomChange	=	-2,
	}

See also