Composter

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]
Composter
CompostBin.gif
[[File:{{{icon2}}}||]]
[[File:{{{icon3}}}||]]
[[File:{{{icon4}}}||]]
[[File:{{{icon5}}}||]]
General
Category
Furniture
Size
1 tile
Function
Convert food into compost
Properties
TypeCrate
Container
Capacity
50
Build
Skill (level)
Tool(s)
Ingredients
5 × Plank.png Plank
4 × Nails.png Nails
Move
Skill (level)
Tool(s)
Technical
Item ID(s)
Movables.{TileID}
Tile ID(s)
camping_01_19 camping_01_20

A composter is a craftable container.

Usage

Making compost

The composter is used to convert rotten food into compost. Rotten food left in the composter will overtime become compost, which can be accessed by right-clicking, which will display the amount of compost as a percentage. If the compost level is 10% or more, an empty sack can be used to "Get Compost", taking 10% and turning the sack into a compost bag, which can then be used to fertilize crops, allowing them to grow quicker.

  • 2% of the composter's capacity is equal to 1 unit, therefore, a composter can hold up to 50 units (10 compost bags).
  • There is a 10% chance when rotten food is converted into compost, for a worm to appear in the composter.
  • Poisonous food can be put in the composter without having any negative impact on the plants or indirectly on the player.
  • Food has to reach the rotten state into the composter before it can start to be deleted from this container (or rather transformed into compost).
  • A full composter will not "waste" rotten food by composting it. This also means worm production is stopped once the composter is 100% full. Food left in the composter will still run out its composting timer though, and instantly compost as soon as room for more compost is made.
  • The composter takes about 2 weeks to convert rotten food into usable compost

A good strategy to fill the composter quickly if the player doesn't have a farm yet is to use the rotten/poisonous berries and mushrooms they forage. The player can also loot restaurants, fridges or any other place containing rotten food. Once the player has a farm producing enough food, the excess can simply be put into the composter.

Storage

Since a composter is a container with a capacity of 50, any item can be placed into it, however only rotten food will be converted. Allowing it to be used as a makeshift storage container.

Crafting

Carpentry

Main article: Carpentry
Product Ingredients Tools Requirements Workstation XP
CompostBin.gif
Composter
Plank.png Plank ×5
Nails.png Nails ×4

Hammer.png
Hammer (tag)
Carpentry 2 none 1.25 Carpentry

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide
Retrieved: Build 41.78.16
-- compost
    local compostOption = subMenu:addOption(getText("ContextMenu_Compost"), worldobjects, ISBuildMenu.onCompost, player, "camping_01_19");
    local tooltip4 = ISBuildMenu.canBuild(5,4,0,0,0,2,compostOption, player);
    tooltip4:setName(getText("ContextMenu_Compost"));
    tooltip4.description = getText("Tooltip_craft_compostDesc") .. tooltip4.description;
    tooltip4:setTexture("camping_01_19");
    ISBuildMenu.requireHammer(compostOption)

See also