Compost Bag: Difference between revisions

From PZwiki
(Created page with "{{languages|Compost Bag}} {{Underconstruction}} {{header|The Game World|Items|Farming|type=Farming|version=Version 41|incver=50}} {{Infobox drainable |display_name=Compost Bag...")
 
No edit summary
Line 1: Line 1:
{{languages|Compost Bag}}
{{languages|Compost Bag}}
{{Underconstruction}}
{{Underconstruction}}
{{header|The Game World|Items|Farming|type=Farming|version=Version 41|incver=50}}
{{header|The Game World|Items|Farming|type=Farming|version=Version 41|incver=73}}
{{Infobox drainable
{{Infobox drainable
|display_name=Compost Bag
|display_name=Compost Bag
Line 14: Line 14:
|class_name=CompostBag
|class_name=CompostBag
}}
}}
A '''compost bag''' is a drainable item that can be used to fertilize player grown crops.
A '''compost bag''' is a drainable item that can be used to fertilize player grown crops. Once the compost bag is drained an empty [[Sack]] is left. The sack can be used to create another Compost Bag from a [[Composter]] as long as the Composter is at least 10% full.  


== Usage ==
== Usage ==
'''TODO'''
The Player can use a compost bag to fertilize crops to increase the rate at which crops grow. The player can fertilize a crop multiple times but if fertilized too many times the plant may rot.


== Code ==
== Code ==

Revision as of 03:05, 2 September 2022

Hammer.png
This article is currently under construction.
It is in the process of an expansion or major restructuring. You are welcome to assist in its construction by editing it as well.
If this page has not been updated in a while, please replace this notice with {{Improve}}. Last edit was 02/09/2022.
The Game WorldItemsFarmingCompost Bag
Compost Bag
Compost Bag
General
Category Item
Encumbrance
Heavy Load
2.0
Function Fertilizing crops
Capacity 4.0 units
Contents Compost
Technical details
item ID CompostBag

A compost bag is a drainable item that can be used to fertilize player grown crops. Once the compost bag is drained an empty Sack is left. The sack can be used to create another Compost Bag from a Composter as long as the Composter is at least 10% full.

Usage

The Player can use a compost bag to fertilize crops to increase the rate at which crops grow. The player can fertilize a crop multiple times but if fertilized too many times the plant may rot.

Code

Retrieved: Build 41.50 From newitems.txt (Project Zomboid directory/media/scripts/)

	item CompostBag
		Type			= Drainable,
		DisplayName		= Compost Bag,
		Icon			= Compost,
		Weight			= 2.0,
		UseDelta		= 0.25,
		UseWhileEquipped	= false,
		ReplaceOnDeplete	= EmptySandbag,
		Tooltip			= Tooltip_Fertilizer,
		SurvivalGear		= TRUE,
		ReplaceInSecondHand	= Bag_Sandbag_LHand holdingbagleft,
		ReplaceInPrimaryHand	= Bag_Sandbag_RHand holdingbagright,

See Also