NPK Fertilizer

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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