Wood Glue: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
(infobox changes and new code section)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=78.16}}
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=78.16}}
{{stub}}
{{Infobox item
{{Infobox item
|display_name=Wood Glue
|display_name=Wood Glue
|name_colour=
|name_text_colour=
|model = WoodGlue Model.png
|model = WoodGlue Model.png
|model_width = 200px
|model_width = 200px
|icon=Woodglue.png
|icon=Woodglue.png
|icon_name=Wood Glue
|icon_name=Wood Glue
|category=Material
|weight = 0.1
|weight = 0.1
|primary_use=
|function=Repair [[weapons]]
|max_units=5
|tags=Glue
|class_name = Base.Woodglue
|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 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.
Line 33: Line 33:


==Code==
==Code==
{{Retrieved|version=41|incver=78.16}}
{{CodeBox |{{CodeSnip
<pre>
|lang=java |line=true |start=1550 |source=newitems.txt
|retrieved=true |version=41 |incver=78.16 |date=2023-09-25
|code=
     item Woodglue
     item Woodglue
     {
     {
Line 49: Line 51:
         Tags = Glue,
         Tags = Glue,
     }
     }
</pre>
}}}}


==See also==
==See also==
Line 56: Line 58:
*[[Glue]]
*[[Glue]]
*[[Repairing Weapons and Items#Melee Weapons|Repairing Weapons]]
*[[Repairing Weapons and Items#Melee Weapons|Repairing Weapons]]
[[Category:Items]]

Revision as of 12:43, 25 September 2023

The Game WorldItemsWood Glue
Wood Glue
WoodGlue Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Repair weapons
Properties
Capacity
5 units
Technical
Tags
Glue
Item 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

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16 (25 September 2023)
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