Sand Bag: Difference between revisions

From PZwiki
No edit summary
(Redesigned page, +Navbar, Added Code. Left alone description)
Line 1: Line 1:
{{languages}}
__NOTOC__
{{languages|Sandbag}}
<div class="header" style="margin: 5px; align: right; background: #C3E4ED; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #9AC0CD"> <!-- Code for Background Colour -->
<div style="float: right;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: left;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Construction|Construction]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
 
{{Items
{{Items
|image = SandbagZ.png  
|image = SandbagZ.png
|weight = 9
|weight = 2.0
}}
}}
A Sandbag is a [[Empty_Sand_Bag|Empty Sandbag]] that has been filled with sand or dirt. Gamewise at Version 34.28, there is no code differences between a [[Gravel_Bag|Gravel Bag]] and a Sandbag.


A heavy but very sturdy bag of sand that can withstand gunshots. Stacking three of these bags together will create a protective, bulletproof, sandbag wall that can be hopped over by holding E or Climbing Through with the right-click menu.  
A heavy but very sturdy bag of sand that can withstand gunshots. Stacking three of these bags together will create a protective, bulletproof, sandbag wall that can be hopped over by holding E or Climbing Through with the right-click menu.  
Line 12: Line 19:


== Crafting ==
== Crafting ==
{{Crafting table header}}
{| class="wikitable sortable" style="text-align:centre;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
|-
{{RecipeLookup|1018}}
{{RecipeLookup|1018}}
{{Crafting table footer}}
|}
</div>
== Code ==
<nowiki>
    item Dirtbag
Weight = 2,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.25,
DisplayName = Dirt Bag,
Icon = Sandbag,
ReplaceOnDeplete = EmptySandbag,


item Sandbag
Weight = 2,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.25,
DisplayName = Sand Bag,
Icon = Sandbag,
ReplaceOnDeplete = EmptySandbag,
</nowiki>


[[Category:items]]
[[Category:Items]]
[[Category:Version 34.28]]

Revision as of 00:41, 26 August 2016


Page Updated @ Version: 34.28
   Navigation - Main Index -> The Game World -> Items -> Construction -> Sand Bag   

Template:Items

A Sandbag is a Empty Sandbag that has been filled with sand or dirt. Gamewise at Version 34.28, there is no code differences between a Gravel Bag and a Sandbag.

A heavy but very sturdy bag of sand that can withstand gunshots. Stacking three of these bags together will create a protective, bulletproof, sandbag wall that can be hopped over by holding E or Climbing Through with the right-click menu.

By having a Shovel equipped, Empty Sand bags can be used to pick up and spill dirt or sand on the ground to make farms on otherwise unfarmable tiles. Filling an Sack with sand will transform it back to a normal Sand Bag which can be used as a barricade.

Usually found in wooden storage crates, which are mostly found in warehouses.

Crafting

Name Recipe Description












Code

    item Dirtbag
		Weight			= 2,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.25,
		DisplayName		= Dirt Bag,
		Icon			= Sandbag,
		ReplaceOnDeplete	= EmptySandbag,

	item Sandbag
		Weight			= 2,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.25,
		DisplayName		= Sand Bag,
		Icon			= Sandbag,
		ReplaceOnDeplete	= EmptySandbag,