Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Be crafty.png

Build 42 unstable is out now!

The wiki has already begun updating. Please be patient during the transition.
Help us by contributing to the build 42 update project.
The Project Zomboid Map Project will not be updated until at least January, in the meantime use B42 Map.

404SpiffoMascotMap.png

Jar of Broccoli

From PZwiki
Project ZomboidItemsFoodPickled foodJar of Broccoli
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Parts of this page may have been automatically updated to the latest build (42.0.2).
Jar of Broccoli
JarFoodBroccoli Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Can boil water
True
Days fresh
365 days
Days until rotten
730 days
Nutrition
HungerUI Hunger.png
-45
CaloriesCalories
55
CarbohydratesCarbohydrates
10
ProteinsProteins
4.5
FatFat
0.5
Cooking
Time until cooked
60 minutes
Time until burned
120 minutes
Technical

A jar of broccoli is a perishable food item.

Usage

Jar of broccoli is used to preserve broccoli longer than their standard 4 days of freshness. After jarring, it is necessary to cook the jar of food in a heat source. Otherwise, the food will rot as fast as if it were not jarred.

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.

LightBulbBlue.png
Recipes are still based on build 41, and are planned to be revamped to build 42 at a later date, depending on the game's crafting system improvement.
Product Ingredients Tools Requirements Workstation XP
JarGreen.png
Jar of Broccoli
One of:
SugarBrown.png Brown Sugar ×1
Sugar.png White Sugar ×1
SugarPacket.png Sugar Packet ×1
Each of:
JarEmpty2.png Empty Jar ×1
JarLid.png Jar Lid ×1
Broccoli.png Broccoli ×5
WaterDrop.png Water ×10 unit(s)
Vinegar.png Vinegar ×2 unit(s)
none none none 2.5 Cooking

Location

Jar of broccoli do not spawn naturally and can only be obtained through crafting.

Variants

History

Base.CannedBroccoli

Version Description
Build 42.0.0 Calories added with value 55.
CantEat added with value TRUE.
Nutrition added with value 10.
DaysFresh changed from 60 to 365.
DaysTotallyRotten changed from 90 to 730.
HungerChange added with value -45.
Nutrition added with value 0.5.
Proteins added with value 4.5.
StaticModel removed.
Item tag added with value ['HasMetal', 'HideHungerChange', 'SpawnCooked'].
Weight changed from 0.5 to 0.8.
Build 41.65 DisplayCategory added with value Food.
WorldStaticModel changed from JarFoodGreen to JarFoodBroccoli_Ground.
Build 41.51 WorldStaticModel added with value JarFoodGreen.
Build 41.12 StaticModel added with value CanClosed.
Build 31.9 DisplayName changed from Canned Broccoli's to Jar of Broccoli.
Build 30.12 Released on this version.

Code

CandleLit.png
This section may have claims which require verification.
Editors should verify the article's current content and, while adding content, check new information.
Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_canning.txt

Retrieved: Build 42.0.2
item CannedBroccoli
	{
		DisplayName = Jar of Broccoli,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = JarGreen,
		DaysFresh = 365,
		DaysTotallyRotten = 730,
		OnCooked = CannedFood_OnCooked,
		IsCookable = TRUE,
		MinutesToBurn = 120,
		MinutesToCook = 60,
		WorldStaticModel = JarFoodBroccoli_Ground,
		CantEat = TRUE,
		HungerChange = -45,
		Calories = 55,
		Carbohydrates = 10,
		Lipids = 0.5,
		Proteins = 4.5,
		Tags = HasMetal;HideHungerChange;SpawnCooked,
	}

See also