Gravel Bag: Difference between revisions

From PZwiki
m (Updated header update.)
m (Automated Formatting)
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials}}
{{Header/sandbox2|Project Zomboid|Items|Materials}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name = Gravel Bag
|name=Gravel Bag
|model = Gravelbag_Model.png
|model=Gravelbag_Model.png
|icon = Gravelbag.png
|icon=Gravelbag.png
|icon_name = Gravel Bag
|icon_name=Gravel Bag
|weight = 2
|weight=2
|primary_use = Laying gravel
|primary_use=Laying gravel
|max_units = 4
|max_units=4
|contents = Gravel
|contents=Gravel
|item_id = Base.Gravelbag
|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.
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.
Line 21: Line 20:


==Crafting==
==Crafting==
{{Crafting header|ing=2}}
{{Crafting/sandbox2
{{Crafting carpentry|206|ing=2}}
|gravel_bag_wall
|}
}}


==Distribution==
==Distribution==
Line 31: Line 30:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="5"|factory
|rowspan="5"|factory
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
|[[crate]]
|[[crate]]
Line 62: Line 61:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 811
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
Line 68: Line 68:
   | code =
   | code =
item Gravelbag
item Gravelbag
{
{
    DisplayCategory       = Material,
    DisplayCategory = Material,
    Weight               = 2,
Weight = 2,
    Type                 = Drainable,
Type = Drainable,
    UseWhileEquipped     = FALSE,
UseWhileEquipped = FALSE,
    UseDelta             = 0.25,
UseDelta = 0.25,
    DisplayName           = Gravel Bag,
DisplayName = Gravel Bag,
    Icon                 = Gravelbag,
Icon = Gravelbag,
    ReplaceOnDeplete     = EmptySandbag,
ReplaceOnDeplete = EmptySandbag,
    ReplaceInSecondHand   = Bag_Sandbag_LHand holdingbagleft,
ReplaceInSecondHand = Bag_Sandbag_LHand holdingbagleft,
    ReplaceInPrimaryHand = Bag_Sandbag_RHand holdingbagright,
ReplaceInPrimaryHand = Bag_Sandbag_RHand holdingbagright,
    WorldStaticModel     = GravelBag,
WorldStaticModel = GravelBag,
    Tooltip               = Tooltip_item_empty_sack_container,
Tooltip = Tooltip_item_empty_sack_container,
}
}
  }}
}}
}}
}}


Line 92: Line 92:
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Carpentry materials]]
[[Category:Carpentry materials]]
{{Navbox items|carpentry_materials}}

Revision as of 08:56, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
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 Ingredients Tools Requirements Workstation XP
SandbagWall Carpentry.png
Gravel Bag Wall
Gravelbag.png Gravel Bag ×3
Hammer.png
Hammer (tag)
none none 1.25 Carpentry

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