Compost Bag

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Compost Bag
Compost Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
2.0
Function
Fertilizing crops
Properties
Contents
Compost
Capacity
4.0 units
Technical
Item ID
CompostBag

A compost bag is a drainable item that can be used to fertilize player grown crops. A compost bag can be used 4 times before it is drained. 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.

It is possible to use the empty sack as a container afterward.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
closet crate 4 1
generalstore metal_shelves 4 1
toolstorestorage metal_shelves 4 1

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item CompostBag
    {
        DisplayCategory = Gardening,
        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,
        WorldStaticModel = CompostBag,
    }

See also