Carrot Seeds: Difference between revisions

From PZwiki
mNo edit summary
m (Automated Formatting)
(37 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=Carrot Seeds
|model=Seeds_Model.png
|icon=TZ_CarrotSeeds.png
|icon_name=Carrot Seeds
|model2=SeedPacketCarrot_Model.png
|icon2=TZ_SeedpackCarrots.png
|icon_name2=Carrot 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.CarrotSeed
|item_id2=farming.CarrotBagSeed
}}
'''Carrot seeds''' are used to grow a crop of [[carrot]]s 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==
{{Items
===Farming===
|image = Carrot seeds loose.png
{{Main|Farming}}
|weight = 0.0
Carrot seeds are used with farming to grow [[Carrots (crop)|carrots]] 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]].
}} <!--/infobox-->


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


Used to grow [[Carrot]]s in tilled land.
==Crafting==
{{Crafting/sandbox2
|carrot_seeds
|carrot_seeds_packet
|carrots_(crop)
}}


==Distribution==
Carrot 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_CarrotSeeds.png]] {{ID|farming.CarrotSeed}}<br>
! Ingredients || Other Items || Output || Description
{{CodeSnip
|-
  | lang = java
| Carrot Seeds [[File:Carrot seeds loose.png|24px]] + [[Trowel]][[File:Trowel.png|24px]] + [[Water]][[File:Watering can.png|24px]] || Land || [[Carrot]][[File:Carrot.png|24px]] + Carrot Seeds || Grows crops.  
  | line = true
|}
  | start = 400
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CarrotSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Carrot Seeds,
Icon = TZ_CarrotSeeds,
Weight = 0.009,
SurvivalGear = TRUE,
WorldStaticModel = Seeds_Ground,
}
}}


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

Revision as of 07:20, 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]
Carrot Seeds
Seeds Model.png
SeedPacketCarrot 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.CarrotSeed
farming.CarrotBagSeed

Carrot seeds are used to grow a crop of carrots on plowed land.

Usage

Farming

Main article: Farming

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

Crafting

Product Ingredients Tools Requirements Workstation XP
TZ CarrotSeeds.png
Carrot Seeds ×50
TZ SeedpackCarrots.png Carrot Seeds Packet ×1 none none none none
TZ SeedpackCarrots.png
Carrot Seeds Packet
TZ CarrotSeeds.png Carrot Seeds ×50 none none none none
Carrot CropB.png
Carrots (crop)
Plowed land.png Plowed Land ×1
TZ CarrotSeeds.png Carrot Seeds ×12
WaterDrop.png Water ×65 unit(s)
none none none none

Distribution

Carrot 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 CarrotSeeds.png farming.CarrotSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item CarrotSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Carrot Seeds,
		Icon				=		TZ_CarrotSeeds,
		Weight				=		0.009,
		SurvivalGear = TRUE,
		WorldStaticModel = Seeds_Ground,
	}

TZ SeedpackCarrots.png farming.CarrotBagSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item CarrotBagSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Carrot Seeds Packet,
		Icon				=		TZ_SeedpackCarrots,
		Weight				=		0.1,
		SurvivalGear = TRUE,
		WorldStaticModel = CarrotSeedBag_Ground,
	}

See also