Wood Glue: Difference between revisions

From PZwiki
(Some cleanups)
Line 1: Line 1:
__NOTOC__
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=78.16}}
{{languages|Wood Glue}}
{{header|The Game World|Items|version=Version 41|incver=39}}
{{stub}}
{{stub}}
{{Infobox normal
{{Infobox normal
Line 7: Line 5:
|name_colour=
|name_colour=
|name_text_colour=
|name_text_colour=
|image = MATERIALWoodGlue.png
|image = WoodGlue Model.png
|image_width = 200px
|alternate_image=Woodglue.png
|alternate_name=Wood Glue
|weight = 0.1
|weight = 0.1
|primary_use=
|primary_use=
|class_name =  
|class_name = Base.Woodglue
}}
}}'''Wood Glue''' is a repair material which can be found in storage cupboards in houses, boxes in warehouses, and sheds which is used to repair weapons to an useable state. The hardware store in [[West Point]] is an excellent place to find '''wood glue''' and many useful tools relatively early in the game.


'''Wood Glue''' is a repair material which can be found in storage cupboards in houses, boxes in warehouses, and sheds which is used to repair weapons to a useable state. The hardware store in [[West Point]] is an excellent place to find '''wood glue''' and many useful tools relatively early in the game.
Using wood glue requires at least level 2 in [[Carpentry]] to use (except for repairing hammers, which require level 1). Currently, wood glue is the best repair material for the majority of weapons in game.
 
Using wood glue requires at least level 2 in [[Carpentry]] to use (with the exception of repairing hammers which require level 1). Currently wood glue is the best repair material for the majority of weapons in game.


Wood glue is a multi-use item and can be used repeatedly until the container has run out. Each full bottle has 5 uses of wood glue, however bottles do not always spawn completely filled, and may have less uses.
Wood glue is a multi-use item and can be used repeatedly until the container has run out. Each full bottle has 5 uses of wood glue, however bottles do not always spawn completely filled, and may have less uses.


=== Glue Needed Per Repair ===
===Glue needed per repair===
 
{| class="pztable"
{| class="pztable"
|-
|-
Line 35: Line 33:


==Code==
==Code==
{{Retrieved|version=41|incver=78}}
{{Retrieved|version=41|incver=78.16}}
<nowiki>
<pre>
     item Woodglue
     item Woodglue
     {
     {
Line 50: Line 48:
         WorldStaticModel = WoodGlue,
         WorldStaticModel = WoodGlue,
         Tags = Glue,
         Tags = Glue,
     }</nowiki>
     }
</pre>


==See also==
==See also==
* [[Adhesive Tape]]
*[[Adhesive Tape]]
* [[Duct Tape]]
*[[Duct Tape]]
* [[Glue]]
*[[Glue]]
* [[Repairing Weapons and Items#Melee Weapons|Repairing Weapons]]
*[[Repairing Weapons and Items#Melee Weapons|Repairing Weapons]]


[[Category:Items]]
[[Category:Items]]

Revision as of 12:28, 18 June 2023

The Game WorldItemsWood Glue
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Wood Glue
Wood Glue
Wood Glue
General
Category Item
Encumbrance
Heavy Load
0.1
Technical details
Base ID Base.Woodglue

Wood Glue is a repair material which can be found in storage cupboards in houses, boxes in warehouses, and sheds which is used to repair weapons to an useable state. The hardware store in West Point is an excellent place to find wood glue and many useful tools relatively early in the game.

Using wood glue requires at least level 2 in Carpentry to use (except for repairing hammers, which require level 1). Currently, wood glue is the best repair material for the majority of weapons in game.

Wood glue is a multi-use item and can be used repeatedly until the container has run out. Each full bottle has 5 uses of wood glue, however bottles do not always spawn completely filled, and may have less uses.

Glue needed per repair

1 Glue/Carpentry 1 2 Glue/Carpentry 2
Hammer Axe
Baseball Bat
Spiked Baseball Bat
Sledgehammer

Code

Retrieved: Build 41.78.16

    item Woodglue
    {
        DisplayCategory = Material,
        Type	            =	        Drainable,
        UseDelta	        =	        0.2,
        UseWhileEquipped	=	        FALSE,
        DisplayName			=		    Wood Glue,
        Icon				=			Woodglue,
        Weight				=			0.1,
        Tooltip = Tooltip_FixItems,
        SurvivalGear = TRUE,
        WorldStaticModel = WoodGlue,
        Tags = Glue,
    }

See also