NPK Fertilizer: Difference between revisions

From PZwiki
m (Added improvement tag. Could use some more information, verify and update distribution, update code to current build)
(→‎Code: Update codebox to B41)
Line 32: Line 32:
==Code==
==Code==


''NPK Fertilizer'' [[File:NPK Fertilizer.png]]
{{CodeBox|[[File:Fertilizer.png]] {{ID|Base.Fertilizer}}<br>
{{CodeBox
{{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 1274
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 39
   | version = 41.78.16
  | incver = 67.5
   | code =
   | code =
item Fertilizer
item Fertilizer
{
    {
    Type = Drainable,
        DisplayCategory = Gardening,
    DisplayName = NPK Fertilizer,
        Type = Drainable,
    Icon = TZ_IndieStoneNPK,
        DisplayName = NPK Fertilizer,
    Weight = 2.0,
        Icon = TZ_IndieStoneNPK,
    UseDelta = 0.25,
        Weight = 2.0,
    UseWhileEquipped = false,
        UseDelta = 0.25,
    Tooltip = Tooltip_Fertilizer,
        UseWhileEquipped =     false,
}
        Tooltip = Tooltip_Fertilizer,
        WeightEmpty = 0.1,
        WorldStaticModel = Fertilizer_Ground,
    }
   }}
   }}
}}


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

Revision as of 07:39, 2 February 2024

Project ZomboidItemsFarmingNPK Fertilizer
WhiskeyHalf.png
This article may be in need of improvement.
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.
NPK Fertilizer
NPK Fertilizer
NPK Fertilizer Empty Fertilizer
General
Category Item
Encumbrance
Heavy Load
2
Function Farming
Capacity 8 units
Contents Fertilizer
Technical details
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

For main article, see: Farming

A single full bag contains four uses which are used with planted crops to increase the speed of growth for that particular plant.

Distribution

NPK fertilizer can be found in sheds and crates of warehouse type buildings.

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