Dirt Bag: Difference between revisions

From PZwiki
m (Automated template formatting)
m (Minor)
Line 1: Line 1:
{{languages|Dirt Bag}}
{{Languages}}
{{Header|Project Zomboid|Items|type=Construction|version=Version 41|incver=65}}
{{Header|Project Zomboid|Items|type=Construction|version=Version 41|incver=65}}
{{Infobox drainable
{{Infobox drainable
Line 13: Line 13:
|contents = Dirt
|contents = Dirt
|class_name = Base.Dirtbag
|class_name = Base.Dirtbag
}}A '''dirt bag''' is a [[sack]] that has been filled with dirt.
}}
A '''dirt bag''' is a [[sack]] that has been filled with dirt.


==Usage==
==Usage==
A dirt bag is used to spill dirt on the ground, allowing the tile to be [[Trowel|tilled]] for [[Farming|farming]], and preventing further grass from growing.  
A dirt bag is used to spill dirt on the ground, allowing the tile to be [[Trowel|tilled]] for [[farming]], and preventing further grass from growing.  


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".
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".
Line 30: Line 31:
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.65
  | incver = 65
   | code =
   | code =
item Dirtbag
item Dirtbag
Line 54: Line 54:
*[[Gravel Bag]]
*[[Gravel Bag]]
*[[Sand Bag]]
*[[Sand Bag]]
[[Category:items]]

Revision as of 01:15, 22 February 2024

Dirt Bag
Dirt Bag
Dirt Bag
General
Category Item
Encumbrance
Heavy Load
2
Function Spilling dirt
Capacity 4 units
Contents Dirt
Technical details
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 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".

Distribution

A dirt bag cannot be found in the world and can only be obtained by filling a sack with dirt using a shovel. 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".

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.65
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