Tomato Seeds: Difference between revisions

From PZwiki
(Added model. Removed image improvement tag. Added gallery section for seed and seed packet model variants.)
(Add distribution table(s))
(17 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials|Farming materials|Seeds}}
{{Header|The Game World|Items|Farming|Seeds|version=Version 41|incver=78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Tomato Seeds
|name=Tomato Seeds
|model=Seeds_Model.png
|model=Seeds_Model.png
|icon=TZ_TomatoSeeds.png
|icon=TZ_TomatoSeeds.png
|icon_name=Tomato Seeds
|icon_name=Tomato Seeds
|model2=SeedPacketTomatoe_Model.png
|icon2=TZ_SeedpackTomatoes.png
|icon2=TZ_SeedpackTomatoes.png
|icon_name2=Tomato Seeds Packet
|icon_name2=Tomato Seeds Packet
Line 12: Line 13:
|function=[[Farming]]
|function=[[Farming]]
|capacity=50 <small>(bag)</small>
|capacity=50 <small>(bag)</small>
|class_name=Base.TomatoSeed<br>Base.TomatoBagSeed
|item_id=farming.TomatoSeed
|item_id2=farming.TomatoBagSeed
}}
}}
'''Tomato seeds''' are used to grow a crop of [[tomato]]es on [[Plowed Land|plowed land]].
'''Tomato seeds''' are used to grow a crop of [[tomato]]es on [[Plowed Land|plowed land]].
Line 19: Line 21:
===Farming===
===Farming===
{{Main|Farming}}
{{Main|Farming}}
Tomato seeds are used with farming to grow a [[Tomato Crop|crop of tomatoes]] 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]].
Tomato seeds are used with farming to grow [[Tomato (crop)|tomatoes]] 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 '''tomato seeds packet''', being much lighter than the individual seeds.
A quantity of 50 can be repackaged back into a '''tomato seeds packet''', being much lighter than the individual seeds.


==Crafting==
==Crafting==
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting farming|113|ing=3}}
|tomato_seeds
{{Crafting farming|114|ing=3}}
|tomato_seeds_packet
{{Crafting farming|208|ing=3}}
|tomato_(crop)
|}
}}


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|TomatoBagSeed|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>TomatoBagSeed distribution
        <span class="mw-customtoggle-togglebox-TomatoBagSeed" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-TomatoBagSeed">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|Outfit_Farmer}}
    | 1
    | 8.0
    |-
    | all
    | {{ll|SeedBag}}
    | 1
    | 20.0
    |-
    | all
    | {{ll|crate}}
    | 1
    | 0.8
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 20.0
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 8.0
    |-
    | gardenstore
    | {{ll|counter}}
    | 4
    | 20.0
    |-
    | generalstore
    | {{ll|metal_shelves}}
    | 4
    | 8.0
    |-
    | toolstorestorage
    | {{ll|metal_shelves}}
    | 4
    | 8.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-TomatoBagSeed" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|TomatoBagSeed|41.78.16-->
Tomato 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]].
Tomato 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]].
==Gallery==
<gallery>
Seeds_Model.png|Tomato seeds.
SeedPacketTomatoe_Model.png|Tomato seeds in a packet.
</gallery>


==Code==
==Code==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|[[File:TZ_TomatoSeeds.png]] {{ID|Base.TomatoSeed}}<br>
''Tomato Seed'' [[File:TZ_TomatoSeeds.png]]
{{CodeSnip
{{Retrieved|version=41|incver=78.16}}
  | lang = java
<pre>
  | line = true
    item TomatoSeed
  | start = 444
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item TomatoSeed
{
{
    DisplayCategory = Gardening,
    DisplayCategory = Gardening,
Line 54: Line 115:
WorldStaticModel = Seeds_Ground,
WorldStaticModel = Seeds_Ground,
}
}
</pre>     
}}


''Tomato Seeds Packet'' [[File:TZ_SeedpackTomatoes.png]]
[[File:TZ_SeedpackTomatoes.png]] {{ID|Base.TomatoBagSeed}}<br>
{{Retrieved|version=41|incver=78.16}}
{{CodeSnip
<pre>
  | lang = java
    item TomatoBagSeed
  | line = true
  | start = 525
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item TomatoBagSeed
{
{
    DisplayCategory = Gardening,
    DisplayCategory = Gardening,
Line 69: Line 136:
WorldStaticModel = TomatoSeedBag_Ground,
WorldStaticModel = TomatoSeedBag_Ground,
}
}
</pre> 
}}
}}


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

Revision as of 03:26, 25 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]
Tomato Seeds
Seeds Model.png
SeedPacketTomatoe 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.TomatoSeed
farming.TomatoBagSeed

Tomato seeds are used to grow a crop of tomatoes on plowed land.

Usage

Farming

Main article: Farming

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

Crafting

Product Ingredients Tools Requirements Workstation XP
TZ TomatoSeeds.png
Tomato Seeds ×50
TZ SeedpackTomatoes.png Tomato Seeds Packet ×1 none none none none
TZ SeedpackTomatoes.png
Tomato Seeds Packet
TZ TomatoSeeds.png Tomato Seeds ×50 none none none none
Tomato CropB.png
Tomato (crop)
Plowed land.png Plowed Land ×1
TZ TomatoSeeds.png Tomato Seeds ×4
WaterDrop.png Water ×75 unit(s)
none none none none

Distribution

The loot distributions can be found in the table(s) below.

TomatoBagSeed distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Outfit_Farmer 1 8.0
all SeedBag 1 20.0
all crate 1 0.8
closet crate 4 20.0
closet crate 4 8.0
gardenstore counter 4 20.0
generalstore metal_shelves 4 8.0
toolstorestorage metal_shelves 4 8.0

Tomato 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 TomatoSeeds.png Base.TomatoSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item TomatoSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Tomato Seeds,
		Icon				=		TZ_TomatoSeeds,
		Weight				=		0.009,
		SurvivalGear = TRUE,
		WorldStaticModel = Seeds_Ground,
	}

TZ SeedpackTomatoes.png Base.TomatoBagSeed
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item TomatoBagSeed
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Tomato Seeds Packet,
		Icon				=		TZ_SeedpackTomatoes,
		Weight				=		0.1,
		SurvivalGear = TRUE,
		WorldStaticModel = TomatoSeedBag_Ground,
	}

See also