Gravel Bag: Difference between revisions

From PZwiki
(Infobox update)
(→‎Distribution: Add table)
Line 25: Line 25:


==Distribution==
==Distribution==
Gravel bags are usually found in [[Containers#Crates|wooden storage crates]], which are mostly found in warehouses.
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
!Building/Room
!Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" |Chance
|-
| rowspan="5"|factory
| [[crate]]
| 4
| 1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|}


==Code==
==Code==

Revision as of 22:30, 22 February 2024

Project ZomboidItemsGravel Bag
Gravel Bag
Gravelbag Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
2
Function
Laying gravel
Properties
Contents
Gravel
Capacity
4 units
Technical
Item ID
Base.Gravelbag

A gravel bag is a sack or similar container that has been filled with gravel. These bags can be used to either create gravel paths, or stacked together to create durable gravel barricades.

Usage

A gravel bag is a heavy, but very sturdy, sack containing gravel. It can be used to path gravel paths. Users can path up to four tiles of gravel with a full bag of gravel.

Gravel bags can also withstand gunshots. Stacking three of these bags together will craft a protective and bulletproof gravel bag wall that can be hopped over by holding E or "Climb Through" with the right-click menu.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
SandbagWall Carpentry.png
Gravel Bag Wall
1.25 Carpentry none Hammer.png
Hammer (tag)
(keep)
Gravelbag.png
Gravel Bag x3
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
factory crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5

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 Gravelbag
{
    DisplayCategory        = Material,
    Weight                = 2,
    Type                  = Drainable,
    UseWhileEquipped      = FALSE,
    UseDelta              = 0.25,
    DisplayName           = Gravel Bag,
    Icon                  = Gravelbag,
    ReplaceOnDeplete      = EmptySandbag,
    ReplaceInSecondHand   = Bag_Sandbag_LHand holdingbagleft,
    ReplaceInPrimaryHand  = Bag_Sandbag_RHand holdingbagright,
    WorldStaticModel      = GravelBag,
    Tooltip               = Tooltip_item_empty_sack_container,
}

See also