Broccoli Seeds: Difference between revisions

From PZwiki
m (Added model. Removed image improvement tag. Updated code section.)
m (Automated Formatting)
(19 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Farming|Seeds|version=Version 40|incver=43}}
{{Header|Project Zomboid|Items|Materials|Farming materials|Seeds}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Broccoli Seeds
|name=Broccoli Seeds
|model=Seeds_Model.png
|model=Seeds_Model.png
|icon=TZ_BroccoliSeeds.png
|icon=TZ_BroccoliSeeds.png
|icon_name=Broccoli Seeds
|icon_name=Broccoli Seeds
|model2=SeedPacketBroccoli_Model.png
|icon2=TZ_SeedpackBroccoli.png
|icon2=TZ_SeedpackBroccoli.png
|icon_name2=Broccoli Seeds Packet
|icon_name2=Broccoli Seeds Packet
Line 11: Line 13:
|function=[[Farming]]
|function=[[Farming]]
|capacity=50 <small>(bag)</small>
|capacity=50 <small>(bag)</small>
|class_name=farming.BroccoliSeed<br>farming.BroccoliBagSeed
|item_id=farming.BroccoliSeed
}}'''Broccoli seeds''' are used to grow a crop of [[broccoli]] on [[Plowed Land|plowed land]].
|item_id2=farming.BroccoliBagSeed
}}
'''Broccoli seeds''' are used to grow a crop of [[broccoli]] on [[Plowed Land|plowed land]].


==Usage==
==Usage==
===Farming===
===Farming===
{{Main|Farming}}
{{Main|Farming}}
Broccoli seeds are used with farming to grow a [[Broccoli Crop|crop of broccoli]] on [[Plowed Land|plowed land]] in an attempt to create a renewable food resource. It takes time to grow and requires being watered and watched over as plants are susceptible to various [[Farming#Plant Diseases|diseases]].  
Broccoli seeds are used with farming to grow [[Broccoli (crop)|broccoli]] on [[Plowed Land|plowed land]] in an attempt to create a renewable food resource. It takes time to grow and requires being watered and watched over as plants are susceptible to various [[Farming#Plant diseases|diseases]].


A quantity of 50 can be repackaged back into a '''broccoli seeds packet''', being much lighter than the individual seeds.
A quantity of 50 can be repackaged back into a '''broccoli seeds packet''', being much lighter than the individual seeds.


==Crafting==
==Crafting==
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting farming|101|ing=3}}
|broccoli_seeds
{{Crafting farming|102|ing=3}}
|broccoli_seeds_packet
{{Crafting farming|202|ing=3}}
|broccoli_(crop)
|}
}}


==Distribution==
==Distribution==
Line 33: Line 36:


==Code==
==Code==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|[[File:TZ_BroccoliSeeds.png]] {{ID|farming.BroccoliSeed}}<br>
 
{{CodeSnip
''Broccoli Seed'' [[File:TZ_BroccoliSeeds.png]]
  | lang = java
{{Retrieved|version=41|incver=78}}
  | line = true
<pre>
  | start = 411
    item BroccoliSeed
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BroccoliSeed
{
{
DisplayCategory = Gardening,
        DisplayCategory = Gardening,
Type = Normal,
Type = Normal,
DisplayName = Broccoli Seeds,
DisplayName = Broccoli Seeds,
Line 48: Line 55:
WorldStaticModel = Seeds_Ground,
WorldStaticModel = Seeds_Ground,
}
}
</pre>     
}}


''Broccoli Seeds Packet'' [[File:TZ_SeedpackBroccoli.png]]
[[File:TZ_SeedpackBroccoli.png]] {{ID|farming.BroccoliBagSeed}}<br>
{{Retrieved|version=41|incver=78}}
{{CodeSnip
<pre>
  | lang = java
    item BroccoliBagSeed
  | line = true
  | start = 492
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BroccoliBagSeed
{
{
DisplayCategory = Gardening,
    DisplayCategory = Gardening,
Type = Normal,
Type = Normal,
DisplayName = Broccoli Seeds Packet,
DisplayName = Broccoli Seeds Packet,
Line 63: Line 76:
WorldStaticModel = BroccoliSeedBag_Ground,
WorldStaticModel = BroccoliSeedBag_Ground,
}
}
</pre>   
}}
}}


==See also==
==See also==
*[[Farming]]
*[[Broccoli]]
*[[Jar of Broccoli]]
*[[Jar of Broccoli]]
*[[Recipe Ingredients#Stir Fry & Roasted Vegetables Ingredients|Stir Fry & Roasted Vegetables Ingredients]]
{{Navbox items|farming_materials}}
 
{{Navbox equipment}}

Revision as of 06:53, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Broccoli Seeds
Seeds Model.png
SeedPacketBroccoli Model.png
General
Category
Gardening
Encumbrance
Moodle Icon HeavyLoad.png
0.009 (single)
0.1 (bag)
Function
Properties
Capacity
50 (bag)
Technical
Item ID
farming.BroccoliSeed
farming.BroccoliBagSeed

Broccoli seeds are used to grow a crop of broccoli on plowed land.

Usage

Farming

Main article: Farming

Broccoli seeds are used with farming to grow broccoli on plowed land in an attempt to create a renewable food resource. It takes time to grow and requires being watered and watched over as plants are susceptible to various diseases.

A quantity of 50 can be repackaged back into a broccoli seeds packet, being much lighter than the individual seeds.

Crafting

Product Ingredients Tools Requirements Workstation XP
TZ BroccoliSeeds.png
Broccoli Seeds ×50
TZ SeedpackBroccoli.png Broccoli Seeds Packet ×1 none none none none
TZ SeedpackBroccoli.png
Broccoli Seeds Packet
TZ BroccoliSeeds.png Broccoli Seeds ×50 none none none none
Broccoli CropB.png
Broccoli (crop)
Plowed land.png Plowed Land ×1
TZ BroccoliSeeds.png Broccoli Seeds ×6
WaterDrop.png Water ×70 unit(s)
none none none none

Distribution

Broccoli seeds packets can be found in the drawers and closets of many houses, but can also be found in crates, storage shelves, and in warehouse type buildings. They may also be found in farming vehicles and in ex farmers.

Code

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

TZ BroccoliSeeds.png farming.BroccoliSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item BroccoliSeed
	{
        DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Broccoli Seeds,
		Icon				=		TZ_BroccoliSeeds,
		Weight				=		0.009,
		SurvivalGear = TRUE,
		WorldStaticModel = Seeds_Ground,
	}

TZ SeedpackBroccoli.png farming.BroccoliBagSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item BroccoliBagSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Broccoli Seeds Packet,
		Icon				=		TZ_SeedpackBroccoli,
		Weight				=		0.1,
		SurvivalGear = TRUE,
		WorldStaticModel = BroccoliSeedBag_Ground,
	}

See also