Seeding Broccoli: Difference between revisions

From PZwiki
mNo edit summary
m (Automated Formatting)
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Consumables
{{Page version|41.78.16}}
|image = Broccoli.png
{{Obsolete|item=true|2=Broccoli}}
|weight = 0.1
{{Reupload|Missing 3D models}}
{{Infobox item
|name=Seeding Broccoli
|icon=TZ_BloomingBroccoli.png
|icon_name=Seeding Broccoli
|icon2=TZ_BloomingBroccoli.png
|icon_name2=Seeding Broccoli (Rotten)
|weight=0.1
|category=Food
|hunger_change=-10
|calories=11
|carbohydrates=2.06
|proteins=0.87
|lipids=0.11
|days_fresh=4
|days_rotten=7
|item_id=farming.BloomingBroccoli
}}
}}
A perishable food item that goes bad as time passes. Can be grown through [[Farming]] with [[Broccoli Seeds]]. It curbs hunger more than standard Broccoli. Can be consumed as-is, or used as a Salad Ingredient. Seeding Broccoli take four in-game days to go stale, and seven in-game days to become rotten.  
A '''seeding broccoli''' was a [[food]] [[Items|item]] originally from the farming mod by [[Romain Dron|RJ]]. It has a unique icon and models and can still be spawned in debug mode or by admin in [[multiplayer]], but can't be found naturally outside of mods.


== Nutritional Information ==
===Consumable properties===
{{Consumables2
Seeding broccoli can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
|image = Broccoli.png
{{Consumables
|hunger = -30
|image = TZ_BloomingBroccoli.png
|thirst = 0
|perishable = 1
|unrotten hunger = -23
|hunger = -10
|unrotten hunger = -7
|unrotten boredom = +10
|unrotten boredom = +10
|unrotten unhappiness = +10
|unrotten unhappiness = +10
|unrotten thirst = 0
|rotten hunger = -4
|unrotten image = Broccoli.png
|rotten hunger = -13
|rotten boredom = +20
|rotten boredom = +20
|rotten unhappiness = +20
|rotten unhappiness = +20
|rotten thirst = 0
|rotten image = TZ_BloomingBroccoli.png
|perishable = 1
|rotten image = RottenBroccoli.png
}}
}}


== Code ==
==Code==
<nowiki>item BloomingBroccoli
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 12
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BloomingBroccoli
{
{
    DisplayCategory = Food,
Type = Food,
Type = Food,
DisplayName = Seeding Broccoli,
DisplayName = Seeding Broccoli,
Icon = TZ_BloomingBroccoli,
Icon = TZ_BloomingBroccoli,
Weight = 0.1,
Weight = 0.1,
HungerChange = -30,
HungerChange = -10,
DaysFresh = 4,
DaysFresh = 4,
DaysTotallyRotten = 7
DaysTotallyRotten = 7,
}</nowiki>
        Carbohydrates = 2.06,
 
        Proteins = 0.87,
== History ==
        Lipids = 0.11,
 
        Calories = 11,
{| class="wikitable" width="550" style="text-align:center;"
        StaticModel = RoundFood_Green,
|-
        WorldStaticModel = BloomingBroccoli_Ground,
! Alpha || 
}
|-
}}
| RC 2.9.8a || Can be grown as a crop.
}}
|}


==See Also==
==See also==
* [[Farming]]
*[[Broccoli]]


{{Navbox/Consumables}}
{{Navbox items|food}}
[[Category:Consumables]]
[[Category:Food]]
[[Category:Perishable Food]]
[[Category:Version 2.9.9.17]]

Latest revision as of 11:56, 14 April 2024

Project ZomboidItemsObsolete itemsSeeding Broccoli
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 Broccoli.
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Seeding Broccoli
Seeding Broccoli
Seeding Broccoli (Rotten)
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Days fresh
4 days
Days until rotten
7 days
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
11
CarbohydratesCarbohydrates
2.06
ProteinsProteins
0.87
FatFat
0.11
Technical
Item ID
farming.BloomingBroccoli

A seeding broccoli was a food item originally from the farming mod by RJ. It has a unique icon and models and can still be spawned in debug mode or by admin in multiplayer, but can't be found naturally outside of mods.

Consumable properties

Seeding broccoli can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.

Fresh Stale Rotten

TZ BloomingBroccoli.png
Hunger: -10


TZ BloomingBroccoli.png
Hunger: -7
Boredom: +10
Unhappiness: +10

TZ BloomingBroccoli.png
Hunger: -4
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item BloomingBroccoli
	{
	    DisplayCategory = Food,
		Type				=		Food,
		DisplayName			=		Seeding Broccoli,
		Icon				=		TZ_BloomingBroccoli,
		Weight				=		0.1,
		HungerChange 		=		-10,
		DaysFresh 			=		4,
		DaysTotallyRotten 	=	 	7,
        Carbohydrates = 2.06,
        Proteins = 0.87,
        Lipids = 0.11,
        Calories = 11,
        StaticModel = RoundFood_Green,
        WorldStaticModel = BloomingBroccoli_Ground,
	}

See also