Hearty Bowl of Soup: Difference between revisions

From PZwiki
Hearty Bowl of Soup
(Movement of Page to Removed Foods Category, modernised layout, + navbar, + brief descrip. corrected consumables as per page code, removed relevant categories.)
m (Insert empty line above each {{Navbox}})
(21 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Obsolete items}}
{{languages}}
{{Page version|41.78.16}}
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
{{Obsolete|item=true|2=Recipe Ingredients#Soup & Stew Ingredients}}
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
{{Infobox item
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[ Main_Page|Index]] -> [[:Category:Food|Food]] -> [[:Category:Removed_Food|Removed Foods]] -> [[Hearty_Bowl_of_Soup|Hearty Bowl of Soup]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|name=Hearty Bowl of Soup
{{Notice|Obsolete}}
|icon=BowlFull.png
{{Consumables
|weight=3
|image = Full_Soup_bowl.png
|category=Food
|hunger = -43
|hunger_change=-43
|boredom = -5
|unhappy_change=-7
|unhappiness = -7
|cook_minutes=28
|weight = 3
|burn_minutes=40
|days_fresh=1
|days_rotten=3
|item_id=Base.HeartyBowl4
}}
}}
The Hearty Bowl of Soup was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
A '''hearty bowl of soup''' was originally a perishable food in Project Zomboid that was removed due to an introduction of a better crafting system.
<br><br>
The Complex Bowl of Soup originally according to code went stale after 1 day and rotted after 3.


== Effects ==
==Effects ==
[[Boredom]]: -5<br>
*[[Bored|Boredom]]: -5
[[Hunger]]: -43<br>
*[[Unhappy|Unhappiness]]: -7
[[Unhappy]]: -7


<br><br><br>
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 452
  | source = items.txt
  | retrieved = true
  | version = 2.9.7
  | version_link = RC 2.9.7
  | hidecat = true
  | code =
item HeartyBowl4
{
Count = 4,
HungerChange = -26,
Type = Food,
DisplayName = Hearty Bowl of Soup,
MinutesToCook = 28,
Weight = 1,
IsCookable = TRUE,
DaysTotallyRotten = 3,
UnhappyChange = -7,
MinutesToBurn = 40,
Icon = BowlFull,
ReplaceOnUse = Bowl,
DaysFresh = 1,
BoredomChange = -5,
}
}}}}


== Code ==
==See also==
<nowiki>item HeartyBowl4
Type = Food,
DisplayName = Hearty Bowl of Soup,
Icon = BowlFull,
Weight = 3,
IsCookable = true,
MinutesToCook = 28,
MinutesToBurn = 40,
Count = 4,
HungerChange = -43,
ReplaceOnUse = Bowl,
BoredomChange = -5,
UnhappyChange = -7,
DaysFresh = 1,
DaysTotallyRotten = 3,
</nowiki>


{{Navbox/Consumables}}
{{Navbox items|food}}
[[Category:Consumables]]
[[Category:Removed Food]]
[[Category:Version 34.28]]

Revision as of 15:09, 25 April 2024

Project ZomboidItemsObsolete itemsHearty 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.
Hearty Bowl of Soup
Hearty 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
-43
Effect
UnhappinessMoodle Icon Unhappy.png
-7
Cooking
Time until cooked
28 minutes
Time until burned
40 minutes
Technical
Item ID
Base.HeartyBowl4

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

Effects

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 HeartyBowl4
	{
		Count	=	4,
		HungerChange	=	-26,
		Type	=	Food,
		DisplayName	=	Hearty Bowl of Soup,
		MinutesToCook	=	28,
		Weight	=	1,
		IsCookable	=	TRUE,
		DaysTotallyRotten	=	3,
		UnhappyChange	=	-7,
		MinutesToBurn	=	40,
		Icon	=	BowlFull,
		ReplaceOnUse	=	Bowl,
		DaysFresh	=	1,
		BoredomChange	=	-5,
	}

See also