NPK Fertilizer: Difference between revisions

From PZwiki
(adjustments to layout. Added new infobox and header)
m (Remove lines))
 
(25 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|NPK_Fertilizer}}
{{Header|Project Zomboid|Items|Materials|Farming materials}}
{{header|The Game World|Items|Farming|type=Farming|version=Version 39|incver=67.5}}{{Infobox drainable
{{Page version|41.78.16}}
|display_name=NPK Fertilizer
{{Infobox item
|name_colour = Farming
|name=NPK Fertilizer
|name_text_colour = Farming
|model=NPKFertilizer_Model.png
|image=TZ_IndieStoneNPK.png
|icon=TZ_IndieStoneNPK.png
|weight=4
|icon_name=NPK Fertilizer
|primary_use = [[Farming]]
|icon2=TZ_IndieStoneNPK.png
|icon_name2=Empty Fertilizer
|weight=2
|primary_use=[[Farming]]
|max_units=4
|max_units=4
|contents=Fertilizer
|contents=Fertilizer
|class_name=Base.Fertilizer
|item_id=Base.Fertilizer<br>Base.FertilizerEmpty
}}{{quote|text=Used on crops to increase growth speed and harvest.|author=In-game tooltip}}
}}
{{Quote|text=Used on crops to increase growth speed and harvest.|author=In-game tooltip}}
'''NPK fertilizer''' is a drainable item used in [[farming]].
'''NPK fertilizer''' is a drainable item used in [[farming]].


==Usage==
==Usage==
===Farming===
===Farming===
:''For main article, see: [[Farming]]''
{{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.
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==
==Distribution==
NPK fertilizer can be found in sheds and [[Containers#Crates|crates]] of warehouse type buildings.
NPK fertilizer can be found in sheds, warehouse [[Containers#Crates|crates]], hardware/ farming stores, and some [[GigaMart]]s.


==Trivia==
==Trivia==
*The letters "NPK" represents the atomic symbol for Nitrogen (N), Phosphorous (P) and Potassium (K), which are vital to plant health and growth.
*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==
''NPK Fertilizer'' [[File:NPK Fertilizer.png]]
<pre> item Fertilizer
Type = Drainable,
DisplayName = NPK Fertilizer,
Icon = TZ_IndieStoneNPK,
Weight = 2.0,
UseDelta = 0.25,
UseWhileEquipped = false,
Tooltip = Tooltip_Fertilizer,</pre>


''Empty Fertilizer'' [[File:NPK Fertilizer.png]]
{{CodeBox|[[File:Fertilizer.png]] {{ID|Base.Fertilizer}}<br>
<pre> item FertilizerEmpty
{{CodeSnip
Type = Normal,
  | lang = java
DisplayName = Empty Fertilizer,
  | line = true
Icon = TZ_IndieStoneNPK,
  | start = 1274
Weight = 0.001</pre>
  | 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,
    }
}}
 
[[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,
    }
}}
}}


==See also==
==See also==
*[[Farming]]
*[[Compost Bag]]
*[[Compost Bag]]
{{Navbox items|farming_materials}}

Latest 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