Jar of Broccoli: Difference between revisions

From PZwiki
(New infobox + new layout)
Line 1: Line 1:
{{languages}}{{Notice|Short}}
{{languages|Jar of Broccoli}}
{{header|Project Zomboid|Items|Food|Perishable Food|Vegetables|type=Food|version=Version 40|incver=7}}{{Infobox food
|display_name=Jar of Broccoli
|name_colour=Food
|name_text_colour=Food
|image=JarGreen_120px.png
|alternate_image=Broccoli.png
|alternate_link=Broccoli
|alternate_name=Broccoli
<!--GENERAL-->
|category=Food
|weight=0.5
|days_fresh=60
|days_rotten=90
<!--TECHNICAL DETAILS-->
|class_name=Base.CannedBroccoli
}}A '''jar of broccoli''' is a [[Food#Perishable|perishable]] food [[item]].


== Description ==
==Usage==
Jar of Broccoli is a food item created by placing 3 units of brocolli into a jar with the additions of 10 units of water, and one unit each of sugar and vinegar. This creates a jarred version of the brocolli which lasts longer than it would normally.
A jar of broccoli is used to preserve [[broccoli]] longer than their standard 4 days of freshness. Broccoli cannot be eaten directly from the jar, therefore the jar must first be opened, returning the Broccoli, with their usual freshness.
<br />
Ordinary brocolli goes rotten within 6 days, when outside a working refrigerator. However a jar of brocolli goes bad after 90 days, which is a significant improvement and offers the ability for long term preservation of food outside a working refrigerator. It also requires an empty jar and a jar lid. <br />
Similiar items include: Jar of Bell Peppers, Jar of Cabbage, Jar of Carrots, Jar of Eggplants, Jar of Leeks, Jar of Potatoes, Jar of Red Radishes, Jar of Tomatoes.
<br /><br />
 
See: [[Broccoli|Brocolli]].<br />
See: [https://pzwiki.net/w/index.php?title=Containers&redirect=no#Refrigerator Refrigerator/Mini-Fridge].
 
{{Consumables
|image = JarGreen.png
|weight = 0.5
}}


== Crafting ==
== Crafting ==
consumption <br>
Broccoli can be pickled to preserve their lifespan by using [[sugar]] and [[vinegar]].
[[File:Water_drop.png|18px|link=Water|Water]] [[Water|Water]] x10 = [[File:UTENSILEmptyWaterBottle.png|18px|link=Water Bottle|Water Bottle]] [[Water Bottle|Water Bottle]](Full)<br>
{{Crafting table header}}
[[File:Vinegar.png|18px|link=Vinegar|Vinegar]] [[Vinegar|Vinegar]] (UseDelta=0.1) x2 = '''0.2'''<br>
[[File:INGREDIENTSugar.png|18px|link=Sugar|Sugar]] [[Sugar|Sugar]] (UseDelta=0.16) x1 = '''0.16''' 
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
! Crafting Level
{{RecipeLookup|2061}}
{{RecipeLookup|2061}}
|}
{{Crafting table footer}}


== Code ==
== Code ==
<nowiki>item CannedBroccoli
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
    {
{{Retrieved|version=40|incver=7}}
        Type = Food,
<pre> item CannedBroccoli
        DisplayName = Jar of Broccoli,
Type = Food,
        Icon = JarGreen,
DisplayName = Jar of Broccoli,
        Weight = 0.5,
Icon = JarGreen,
        DaysFresh = 60,
Weight = 0.5,
        DaysTotallyRotten = 90,
DaysFresh = 60,
        OnCooked           =       CannedFood_OnCooked,
DaysTotallyRotten = 90,
IsCookable         =     TRUE,
OnCooked = CannedFood_OnCooked,
        MinutesToBurn     =     120,
IsCookable = TRUE,
        MinutesToCook     =     60,
MinutesToBurn = 120,
    }</nowiki>
MinutesToCook = 60,</pre>
 
== History ==
 
{| class="wikitable" width="550" style="text-align:center;"
|-
! Alpha || 
|-
| - || -
|}


==See Also==
==See also==
* [[Items#Food_preservation|Food_preservation]]
* [[Items#Pickled foods|Pickled foods]]
* [[Farming|Farming Guide]]


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

Revision as of 15:29, 18 August 2018

Jar of Broccoli
Jar of Broccoli
Broccoli
General
Category Food
Encumbrance
Heavy Load
0.5
Days until stale 60 days
Days until rotten 90 days
Technical details
Item ID Base.CannedBroccoli

A jar of broccoli is a perishable food item.

Usage

A jar of broccoli is used to preserve broccoli longer than their standard 4 days of freshness. Broccoli cannot be eaten directly from the jar, therefore the jar must first be opened, returning the Broccoli, with their usual freshness.

Crafting

Broccoli can be pickled to preserve their lifespan by using sugar and vinegar. Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 40.7

	item CannedBroccoli
		Type			= Food,
		DisplayName		= Jar of Broccoli,
		Icon			= JarGreen,
		Weight			= 0.5,
		DaysFresh 		= 60,
		DaysTotallyRotten 	= 90,
		OnCooked		= CannedFood_OnCooked,
		IsCookable		= TRUE,
		MinutesToBurn		= 120,
		MinutesToCook		= 60,

See also

Template:Navbox/Consumables