Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Dirt 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]
Dirt Bag
DirtBag Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
2
Properties
Contents
Dirt
Capacity
4 units
Technical
Item ID
Base.Dirtbag

A dirt bag is a sack that has been filled with dirt.

Usage

A dirt bag is used to spill dirt on the ground, allowing the tile to be tilled for farming, and preventing further grass from growing. A sack can be filled by right-clicking a patch of grass or dirt with both the sack and a shovel in the player's inventory, and using the action "Take some Dirt > Sack".

A dirt bag can have up to 4 tiles of dirt. To fill a dirt bag with more dirt, a shovel must be in the player's main inventory, then a patch of grass or dirt can be right-clicked, followed by using the action "Take some Dirt > Dirt Bag".

Location

A dirt bag cannot be found in the world and can only be obtained by filling a sack with dirt using a shovel.

Gallery

History

Base.Dirtbag

Version Description
Build 41.65 DisplayCategory added with value Material.
Tooltip added with value Tooltip_item_empty_sack_container.
Build 41.54 WorldStaticModel added with value DirtBag_Ground.
Build 41.48 ReplaceInPrimaryHand added with value Bag_Sandbag_RHand holdingbagright.
ReplaceInSecondHand added with value Bag_Sandbag_LHand holdingbagleft.
Build 34.23 DisplayName changed from Dirt bag to Dirt Bag.
Build 19 Released on this version.

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Dirtbag
	{
	    DisplayCategory = Material,
		Weight	=	2,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.25,
		DisplayName	=	Dirt Bag,
		Icon	=	Sandbag,
		ReplaceOnDeplete	=	EmptySandbag,
		ReplaceInSecondHand = Bag_Sandbag_LHand holdingbagleft,
		ReplaceInPrimaryHand = Bag_Sandbag_RHand holdingbagright,
		WorldStaticModel = DirtBag_Ground,
        Tooltip = Tooltip_item_empty_sack_container,
	}

See also