Adhesive Tape: 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}}{{Stub}}{{Infobox item
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=78.16}}{{Infobox item
|display_name=Adhesive Tape
|display_name=Adhesive Tape
|name_colour=
|name_text_colour=
|model = AdhesiveTape_Model.png
|model = AdhesiveTape_Model.png
|icon=Scotchtape.png
|icon=Scotchtape.png
|icon_name=Adhesive Tape
|icon_name=Adhesive Tape
|category=Material
|weight = 0.1
|weight = 0.1
|primary_use=
|function=Fix [[weapons]]
|class_name =  
|class_name = Base.Scotchtape
}}'''Adhesive tape''', or '''scotch tape''' is a repair material.  
}}'''Adhesive tape''', or '''scotch tape''' is a repair material.  


Line 66: Line 65:


==Code==
==Code==
{{Retrieved|version=41|incver=78.16}}
{{CodeBox |{{CodeSnip
<pre>
|lang=java |line=true |start=1464 |source=newitems.txt
|retrieved=true |version=41 |incver=78.16 |date=2023-09-25
|code=
item Scotchtape
item Scotchtape
DisplayCategory = Material,
    {
Type = Normal,
        DisplayCategory = Material,
DisplayName = Adhesive Tape,
        Type = Normal,
Icon = Scotchtape,
        DisplayName =     Adhesive Tape,
Weight = 0.1,
        Icon = Scotchtape,
Tooltip = Tooltip_FixItems,
        Weight = 0.1,
SurvivalGear = TRUE,
        Tooltip = Tooltip_FixItems,
WorldStaticModel = Scotchtape,
        SurvivalGear = TRUE,
</pre>
        WorldStaticModel = Scotchtape,
    }
}}}}


==See also==
==See also==

Revision as of 12:40, 25 September 2023

The Game WorldItemsAdhesive Tape
Adhesive Tape
AdhesiveTape Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Technical
Item ID
Base.Scotchtape

Adhesive tape, or scotch tape is a repair material.

Usage

Adhesive tape is used to repair weapons to a useable state. It is usually an inferior material to duct tape or wood glue but is better than nothing. Using Adhesive tape does not require any skill in carpentry to use.

Adhesive tape is a single-use item and can be used only once and the roll will run out. It can repair up to 10% durability for the first use on a weapon. Note that this percentage decreases with every repair.

Amount of Adhesive Tape used per repair

A roll of adhesive tape only provides 1 use. Multiple rolls will be needed per repair.

2 Uses 3 Uses 4 Uses
Kitchen Knife Wooden Mallet Wood Axe
Hunting Knife Violin Spiked Baseball Bat
Hand Fork Trumpet Snow Shovel
Tennis Racket Sledgehammer
Saxophone Shovel
Rolling Pin Pickaxe
Machete Ice Hockey Stick
Hammer Hockey Stick
Griddle Pan Hand Axe
Golf Club Garden Hoe
Frying Pan Garden Hoe
Club Hammer Garden Fork
Broom Spear
Electric Guitar Canoe Paddle
Electric Bass Canoe Paddle - Double-bladed
Banjo Baseball Bat
Ball-peen Hammer Axe
Badminton Racket
Acoustic Guitar

Distribution

Adhesive tape can be found in desks, cupboards, storage crates, and sheds. It can also be found in the glove boxes of vehicles.

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 Scotchtape
    {
        DisplayCategory = Material,
        Type				=			Normal,
        DisplayName			=		    Adhesive Tape,
        Icon				=			Scotchtape,
        Weight				=			0.1,
        Tooltip = Tooltip_FixItems,
        SurvivalGear = TRUE,
        WorldStaticModel = Scotchtape,
    }

See also