NPK Fertilizer: Difference between revisions

From PZwiki
mNo edit summary
m (Remove lines))
(27 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Materials|Farming materials}}
{{Page version|41.78.16}}
{{Infobox item
|name=NPK Fertilizer
|model=NPKFertilizer_Model.png
|icon=TZ_IndieStoneNPK.png
|icon_name=NPK Fertilizer
|icon2=TZ_IndieStoneNPK.png
|icon_name2=Empty Fertilizer
|weight=2
|primary_use=[[Farming]]
|max_units=4
|contents=Fertilizer
|item_id=Base.Fertilizer<br>Base.FertilizerEmpty
}}
{{Quote|text=Used on crops to increase growth speed and harvest.|author=In-game tooltip}}
'''NPK fertilizer''' is a drainable item used in [[farming]].


{{Items
==Usage==
|image = NPK Fertilizer.png
===Farming===
|weight = 2.0
{{Main|Farming}}
}}
A single full bag contains four uses which are used with planted crops to increase the speed of growth for that particular plant, it will remove 20 hours from the current growth cycle of the plant. If there are less than 20 hours remaining on that growth cycle, it will immediately proceed to the next level and the extra hours will be lost. Fertilizing a plant 5 times in total will kill it instantly.
 
==Distribution==
NPK fertilizer can be found in sheds, warehouse [[Containers#Crates|crates]], hardware/ farming stores, and some [[GigaMart]]s.


This can be used in [[farming]] to speed-up the growth speed of your plants.
==Trivia==
*The letters "NPK" represents the atomic symbol for Nitrogen (N), Phosphorous (P) and Potassium (K), which are vital to plant health and growth.


You will find in into [[crates]], but it is a relatively rare [[item]].
==Code==


One '''PNK Fertilizer''' bag will enable you to fertilize only 4 parcels of your plantations.
{{CodeBox|[[File:Fertilizer.png]] {{ID|Base.Fertilizer}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1274
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Fertilizer
    {
        DisplayCategory = Gardening,
        Type = Drainable,
        DisplayName = NPK Fertilizer,
        Icon = TZ_IndieStoneNPK,
        Weight = 2.0,
        UseDelta = 0.25,
        UseWhileEquipped =     false,
        Tooltip = Tooltip_Fertilizer,
        WeightEmpty = 0.1,
        WorldStaticModel = Fertilizer_Ground,
    }
}}


== Code ==
[[File:Fertilizer.png]] {{ID|Base.FertilizerEmpty}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1288
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item FertilizerEmpty
    {
        DisplayCategory = Gardening,
        Type = Normal,
        DisplayName = Empty Fertilizer,
        Icon = TZ_IndieStoneNPK,
        Weight = 0.001,
        WorldStaticModel = Fertilizer_Ground,
    }
}}
}}


<pre>
==See also==
item Fertilizer
*[[Farming]]
{
*[[Compost Bag]]
DisplayName = NPK Fertilizer,
Icon = TZ_IndieStoneNPK,
Type = Drainable,
UseDelta = 0.25,
UseWhileEquipped= false,
Weight = 2.0
}
</pre>


{{Navbox/Drainables}}
{{Navbox items|farming_materials}}
[[Category:Drainable]]
[[Category:Farming]]

Revision as of 07:14, 15 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]
NPK Fertilizer
NPKFertilizer Model.png
Empty Fertilizer
General
Encumbrance
Moodle Icon HeavyLoad.png
2
Function
Properties
Contents
Fertilizer
Capacity
4 units
Technical
Item ID
Base.Fertilizer
Base.FertilizerEmpty
Used on crops to increase growth speed and harvest.
— In-game tooltip

NPK fertilizer is a drainable item used in farming.

Usage

Farming

Main article: Farming

A single full bag contains four uses which are used with planted crops to increase the speed of growth for that particular plant, it will remove 20 hours from the current growth cycle of the plant. If there are less than 20 hours remaining on that growth cycle, it will immediately proceed to the next level and the extra hours will be lost. Fertilizing a plant 5 times in total will kill it instantly.

Distribution

NPK fertilizer can be found in sheds, warehouse crates, hardware/ farming stores, and some GigaMarts.

Trivia

  • The letters "NPK" represents the atomic symbol for Nitrogen (N), Phosphorous (P) and Potassium (K), which are vital to plant health and growth.

Code

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

Fertilizer.png Base.Fertilizer
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Fertilizer
    {
        DisplayCategory = Gardening,
        Type				=		Drainable,
        DisplayName			=		NPK Fertilizer,
        Icon				=		TZ_IndieStoneNPK,
        Weight				=		2.0,
        UseDelta			=		0.25,
        UseWhileEquipped	=	    false,
        Tooltip = Tooltip_Fertilizer,
        WeightEmpty = 0.1,
        WorldStaticModel = Fertilizer_Ground,
    }

Fertilizer.png Base.FertilizerEmpty
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item FertilizerEmpty
    {
        DisplayCategory = Gardening,
        Type				=		Normal,
        DisplayName			=		Empty Fertilizer,
        Icon				=		TZ_IndieStoneNPK,
        Weight				=		0.001,
        WorldStaticModel = Fertilizer_Ground,
    }

See also