Potato Seeds: Difference between revisions

From PZwiki
(Added information about repackaging seeds.)
m (Automated Formatting)
(31 intermediate revisions by 12 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=Potato Seeds
|model=Seeds_Model.png
|icon=TZ_PotatoSeeds.png
|icon_name=Potato Seeds
|model2=SeedPacketPotatoe_Model.png
|icon2=TZ_SeedpackPotatoes.png
|icon_name2=Potato 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.PotatoSeed
|item_id2=farming.PotatoBagSeed
}}
'''Potato seeds''' are used to grow a crop of [[potato]]es 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 = Potato Seeds.png
{{Main|Farming}}
|weight = 0.0
Potato seeds are used with farming to grow a [[potatoes]] 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 [[Farming#Plant diseases|diseases]].
}} <!--/infobox-->


Used to grow [[Potato]]es in tilled land.
A quantity of 50 can be repackaged back into a '''potato seeds packet''', being much lighter than the individual seeds.


A quantity of 50 can be repackaged back into a [[Potato Seeds Packet]]
==Crafting==
{{Crafting/sandbox2
|potato_seeds
|potato_seeds_packet
|potatoes
}}


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


[[Category:items]]
[[File:TZ_SeedpackPotatoes.png]] {{ID|farming.PotatoBagSeed}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 536
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item PotatoBagSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Potato Seeds Packet,
Icon = TZ_SeedpackPotatoes,
Weight = 0.1,
SurvivalGear = TRUE,
WorldStaticModel = PotatoSeedBag_Ground,
}
}}
}}
 
==See also==
*[[Potato]]
*[[Recipe ingredients#Soup & stew ingredients|Soup & stew ingredients]]
*[[Recipe ingredients#Stir fry & roast ingredients|Stir fry & roast ingredients]]
{{Navbox items|farming_materials}}

Revision as of 11:15, 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]
Potato Seeds
Seeds Model.png
SeedPacketPotatoe 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.PotatoSeed
farming.PotatoBagSeed

Potato seeds are used to grow a crop of potatoes on plowed land.

Usage

Farming

Main article: Farming

Potato seeds are used with farming to grow a potatoes 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 potato seeds packet, being much lighter than the individual seeds.

Crafting

Product Ingredients Tools Requirements Workstation XP
TZ PotatoSeeds.png
Potato Seeds ×50
TZ SeedpackPotatoes.png Potato Seeds Packet ×1 none none none none
TZ SeedpackPotatoes.png
Potato Seeds Packet
TZ PotatoSeeds.png Potato Seeds ×50 none none none none
Potato CropB.png
Potatoes
Plowed land.png Plowed Land ×1
TZ PotatoSeeds.png Potato Seeds ×4
WaterDrop.png Water ×65 unit(s)
none none none none

Distribution

Potato 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 PotatoSeeds.png farming.PotatoSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item PotatoSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Potato Seeds,
		Icon				=		TZ_PotatoSeeds,
		Weight				=		0.009,
		SurvivalGear = TRUE,
		WorldStaticModel = Seeds_Ground,
	}

TZ SeedpackPotatoes.png farming.PotatoBagSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item PotatoBagSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Potato Seeds Packet,
		Icon				=		TZ_SeedpackPotatoes,
		Weight				=		0.1,
		SurvivalGear = TRUE,
		WorldStaticModel = PotatoSeedBag_Ground,
	}

See also