Potato Seeds: Difference between revisions

From PZwiki
m (→‎Crafting: Remove old template)
m (Automated CodeBox update)
(18 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Farming|Seeds|version=Version 40|incver=43}}{{Infobox normal
{{Header|Project Zomboid|Items|Materials|Farming materials|Seeds}}
|display_name=Potato Seeds
{{Page version|41.78.16}}
|name_colour=Farming
{{Infobox item
|name_text_colour=Farming
|name=Potato Seeds
|image=TZ_PotatoSeeds.png
|model=Seeds_Model.png
|alternate_image=TZ_SeedpackPotatoes.png
|icon=TZ_PotatoSeeds.png
|alternate_name=Potato Seeds Packet
|icon_name=Potato Seeds
|weight=0.009
|model2=SeedPacketPotatoe_Model.png
|primary_use=[[Farming]]
|icon2=TZ_SeedpackPotatoes.png
|class_name=Base.PotatoSeed<br>Base.PotatoBagSeed
|icon_name2=Potato Seeds Packet
}}'''Potato seeds''' are used to grow a crop of [[potato]]es on [[Plowed Land|plowed land]].
|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]].


==Usage==
==Usage==
===Farming===
===Farming===
{{Main|Farming}}
{{Main|Farming}}
Potato seeds are used with farming to grow a [[Potato Crop|crop of 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]].  
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]].


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''', being much lighter than the individual seeds.
Line 30: Line 37:


==Code==
==Code==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|[[File:TZ_PotatoSeeds.png]] {{ID|farming.PotatoSeed}}<br>
''Potato Seed'' [[File:TZ_PotatoSeeds.png]]
{{CodeSnip
{{Retrieved|version=40|incver=43}}
  | lang = java
<pre>
  | line = true
item PotatoSeed
  | start = 455
Type = Normal,
  | source = farming.txt
DisplayName = Potato Seeds,
  | retrieved = true
Icon = TTZ_PotatoSeeds,
  | version = 41.78.16
Weight = 0.009,
  | code =
</pre>     
item PotatoSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Potato Seeds,
Icon = TZ_PotatoSeeds,
Weight = 0.009,
SurvivalGear = TRUE,
WorldStaticModel = Seeds_Ground,
}
}}


''Potato Seeds Packet'' [[File:TZ_SeedpackPotatoes.png]]
[[File:TZ_SeedpackPotatoes.png]] {{ID|farming.PotatoBagSeed}}<br>
{{Retrieved|version=40|incver=43}}
{{CodeSnip
<pre>
  | lang = java
item PotatoBagSeed
  | line = true
Type = Normal,
  | start = 536
DisplayName = Potato Seeds Packet,
  | source = farming.txt
Icon = TZ_SeedpackPotatoes,
  | retrieved = true
Weight = 0.1,
  | version = 41.78.16
</pre> 
  | code =
item PotatoBagSeed
{
    DisplayCategory = Gardening,
Type = Normal,
DisplayName = Potato Seeds Packet,
Icon = TZ_SeedpackPotatoes,
Weight = 0.1,
SurvivalGear = TRUE,
WorldStaticModel = PotatoSeedBag_Ground,
}
}}
}}


==See also==
==See also==
*[[Farming]]
*[[Potato]]
*[[Recipe Ingredients#Soup & Stew Ingredients|Soup & Stew Ingredients]]
*[[Recipe ingredients#Soup & stew ingredients|Soup & stew ingredients]]
*[[Recipe Ingredients#Stir Fry & Roasted Vegetables Ingredients|Stir Fry & Roasted Vegetables Ingredients]]
*[[Recipe ingredients#Stir fry & roast ingredients|Stir fry & roast ingredients]]
 
{{Navbox equipment}}

Revision as of 11:20, 26 March 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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
TZ PotatoSeeds.png
Potato Seeds x50
0 XP none Potato Seeds Packet
Potato Seeds Packet
(consumed)


Potato Seeds Packet
Potato Seeds Packet
0 XP none TZ PotatoSeeds.png
Potato Seeds x50
(consumed)


Potato CropB.png
Potatoes
0 XP none Plowed land.png
Plowed Land
(consumed)
TZ PotatoSeeds.png
Potato Seeds x4
(consumed)
WaterDrop.png
Water
(65+ units)

(consumed)

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