Cabbage Seeds: Difference between revisions

From PZwiki
(added "languages")
m (Automated Formatting)
(36 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{Notice|Improve}}
{{Header|Project Zomboid|Items|Materials|Farming materials|Seeds}}
{{Page version|41.78.16}}
{{Infobox item
|name=Cabbage Seeds
|model=Seeds_Model.png
|icon=TZ_CabbageLettuceSeeds.png
|icon_name=Cabbage Seeds
|model2=SeedPacketCabbage_Model.png
|icon2=TZ_SeedpackCabbageLettuce.png
|icon_name2=Cabbage Seeds Packet
|category=Gardening
|weight=0.009 <small>(single)</small><br>0.1 <small>(bag)</small>
|function=[[Farming]]
|capacity=50 <small>(bag)</small>
|item_id=farming.CabbageSeed
|item_id2=farming.CabbageBagSeed
}}
'''Cabbage seeds''' are used to grow a crop of [[cabbage]] on [[Plowed Land|plowed land]].


<!--this section is for the infobox which will be positioned on the right of the page. Image.png is the default question mark image-->
==Usage==
{{languages|Cabbage Seeds}}
===Farming===
{{Items
{{Main|Farming}}
|image = Cabbage Seeds.png
Cabbage seeds are used with farming to grow [[cabbages]] 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]].
|weight = 0.0
}} <!--/infobox-->


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


Used to grow [[Cabbage]] in tilled land.
==Crafting==
{{Crafting/sandbox2
|cabbage_seeds
|cabbage_seeds_packet
|cabbages
}}


==Distribution==
Cabbage 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]].


{| class="wikitable" width="550" style="text-align:center;"
==Code==
|-
{{CodeBox|[[File:TZ_CabbageLettuceSeeds.png]] {{ID|farming.CabbageSeed}}<br>
! Ingredients || Other Items || Output || Description
{{CodeSnip
|-
  | lang = java
| Cabbage Seeds [[File:Cabbage Seeds.png|24px]] + [[Trowel]][[File:Trowel.png|24px]] + [[Water]][[File:Watering can.png|24px]] || Land || [[Cabbage]][[File:Cabbage.png|24px]] + Cabbage Seeds || Grows crops.  
  | line = true
|}
  | start = 466
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CabbageSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Cabbage Seeds,
Icon = TZ_CabbageLettuceSeeds,
Weight = 0.009,
SurvivalGear = TRUE,
WorldStaticModel = Seeds_Ground,
}
}}


[[Category:items]]
[[File:TZ_SeedpackCabbageLettuce.png]] {{ID|farming.CabbageBagSeed}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 547
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CabbageBagSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Cabbage Seeds Packet,
Icon = TZ_SeedpackCabbageLettuce,
Weight = 0.1,
SurvivalGear = TRUE,
WorldStaticModel = CabbageSeedBag_Ground,
}
}}
}}
 
==See also==
*[[Cabbage]]
*[[Jar of Cabbage]]
{{Navbox items|farming_materials}}

Revision as of 07:05, 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]
Cabbage Seeds
Seeds Model.png
SeedPacketCabbage 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.CabbageSeed
farming.CabbageBagSeed

Cabbage seeds are used to grow a crop of cabbage on plowed land.

Usage

Farming

Main article: Farming

Cabbage seeds are used with farming to grow cabbages 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 cabbage seeds packet, being much lighter than the individual seeds.

Crafting

Product Ingredients Tools Requirements Workstation XP
TZ CabbageLettuceSeeds.png
Cabbage Seeds ×50
TZ SeedpackCabbageLettuce.png Cabbage Seeds Packet ×1 none none none none
TZ SeedpackCabbageLettuce.png
Cabbage Seeds Packet
TZ CabbageLettuceSeeds.png Cabbage Seeds ×50 none none none none
Cabbage CropB.png
Cabbages
Plowed land.png Plowed Land ×1
TZ CabbageLettuceSeeds.png Cabbage Seeds ×9
WaterDrop.png Water ×85 unit(s)
none none none none

Distribution

Cabbage 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.

Code

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

TZ CabbageLettuceSeeds.png farming.CabbageSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item CabbageSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Cabbage Seeds,
		Icon				=		TZ_CabbageLettuceSeeds,
		Weight				=		0.009,
		SurvivalGear = TRUE,
		WorldStaticModel = Seeds_Ground,
	}

TZ SeedpackCabbageLettuce.png farming.CabbageBagSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item CabbageBagSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Cabbage Seeds Packet,
		Icon				=		TZ_SeedpackCabbageLettuce,
		Weight				=		0.1,
		SurvivalGear = TRUE,
		WorldStaticModel = CabbageSeedBag_Ground,
	}

See also