NPK Fertilizer: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Remove lines))
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=NPK Fertilizer
|name=NPK Fertilizer
|name_colour=Farming
|name_text_colour=Farming
|model=NPKFertilizer_Model.png
|model=NPKFertilizer_Model.png
|icon=TZ_IndieStoneNPK.png
|icon=TZ_IndieStoneNPK.png
Line 16: Line 14:
|item_id=Base.Fertilizer<br>Base.FertilizerEmpty
|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]].
Line 42: Line 39:
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
item Fertilizer
item Fertilizer
     {
     {
         DisplayCategory = Gardening,
         DisplayCategory = Gardening,
Line 55: Line 52:
         WorldStaticModel = Fertilizer_Ground,
         WorldStaticModel = Fertilizer_Ground,
     }
     }
  }}
}}


[[File:Fertilizer.png]] {{ID|Base.FertilizerEmpty}}<br>
[[File:Fertilizer.png]] {{ID|Base.FertilizerEmpty}}<br>
Line 66: Line 63:
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item FertilizerEmpty
item FertilizerEmpty
     {
     {
         DisplayCategory = Gardening,
         DisplayCategory = Gardening,
Line 75: Line 72:
         WorldStaticModel = Fertilizer_Ground,
         WorldStaticModel = Fertilizer_Ground,
     }
     }
  }}
}}
}}
}}


Line 82: Line 79:
*[[Compost Bag]]
*[[Compost Bag]]


{{Navbox equipment}}
{{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