NPK Fertilizer: Difference between revisions

From PZwiki
m (→‎top: category project: "The Game World")
m (Remove lines))
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials|Farming materials}}
{{Header|Project Zomboid|Items|Farming|type=Farming|version=Version 39|incver=67.5}}
{{Page version|41.78.16}}
{{Infobox drainable
{{Infobox item
|display_name=NPK Fertilizer
|name=NPK Fertilizer
|name_colour=Farming
|model=NPKFertilizer_Model.png
|name_text_colour=Farming
|icon=TZ_IndieStoneNPK.png
|image=NPKFertilizer_Model.png
|icon_name=NPK Fertilizer
|alternate_image=TZ_IndieStoneNPK.png
|icon2=TZ_IndieStoneNPK.png
|alternate_name=NPK Fertilizer
|icon_name2=Empty Fertilizer
|alternate_image2=TZ_IndieStoneNPK.png
|alternate_name2=Empty Fertilizer
|weight=2
|weight=2
|primary_use=[[Farming]]
|primary_use=[[Farming]]
|max_units=8
|max_units=4
|contents=Fertilizer
|contents=Fertilizer
|class_name=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}}
Line 21: Line 19:
==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==
Line 32: Line 30:
==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,
    }
}}
}}
}}


==See also==
==See also==
*[[Farming]]
*[[Compost Bag]]
*[[Compost Bag]]


{{Navbox equipment}}
{{Navbox items|farming_materials}}
 
[[Category:Farming Tools]]

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