Long Leather Jacket: Difference between revisions

From PZwiki
Long Leather Jacket
m (Removed Testing tag due to Build 41 being stable.)
m (Cleanup)
Line 1: Line 1:
<!-- COMMENT: This section is for the language bar. The language bar is used for linking translations of the same page into different languages.
{{Languages}}{{Header|The Game World|Items|Clothing|version=Version 41|incver=56}}{{Infobox clothing
-->{{languages}}<!-- COMMENT: The header format can be seen in the header template with a working explanation. The header connects categories and Version no. PLEASE ENTER THE VERSION AND INCREMENT No. WHEN YOU MAKE A PAGE. It helps everyone else know how old the page is versionwise -->
{{header|The Game World|Items|Clothing|version=Version 41|incver=56}}
<!-- COMMENT: Here is the infobox for the clothing. This is a quick lookup for the item's stats. For more information, see: https://pzwiki.net/wiki/Template:Infobox_clothing
-->{{Infobox clothing
| display_name = Leather Jacket
| display_name = Leather Jacket
| name_colour = Clothing
| name_colour = Clothing
| name_text_colour = Clothing
| name_text_colour = Clothing
| image =  
| image =  
| image_width = 300px
| image_width = 200px
| alternate_image = JacketLongBrown.png
| alternate_image = JacketLongBrown.png
| alternate_name = Long Leather Jacket
| alternate_name = Long Leather Jacket
Line 52: Line 48:
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.JacketLong_Random
| class_name = Base.JacketLong_Random
}}<!--
}}The long '''leather jacket''' is a longer version of the normal leather jacket.
COMMENT: include a very brief introduction to the item
-->The long '''leather jacket''' is a longer version of the normal leather jacket.
 
__TOC__
<!--Comment: This is where the 'Table Of Contents' will go if it is needed-->


==Usage==
==Usage==
<!--Comment: This section contains how the item can be used. This may include crafting, adding attachments (belts), storage space, or another functionality, such as being able to raise and lower the hood of some jackets. -->
===Pros and cons===
===Pros and Cons===
{{Pros-cons
{{pros-cons
<!-- #PROS# - below this line -->
|pros1 = Fairly easy to find
|pros1 = Fairly easy to find
|pros2 = Good scratch and bite resistance
|pros2 = Good scratch and bite resistance
|pros3 = Protects well from weather
|pros3 = Protects well from weather
|pros4 = Provides more protection than a normal leather jacket
|pros4 = Provides more protection than a normal leather jacket
<!-- #CONS# - below this line -->
|cons1 = Cannot be used to make [[Ripped Sheets|ripped sheets]] or [[sheet rope]]
|cons1 = Cannot be used to make [[Ripped Sheets|ripped sheets]] or [[sheet rope]]
|cons2 = Slows down movement and combat speed slightly
|cons2 = Slows down movement and combat speed slightly
}}
}}


== Item Distribution ==
==Item distribution==
<!--Comment: The locations this item can be found should be placed here. Spawn locations can be found in the distribution.lua, ProceduralDistributions.lua and vehicledistribution.lua files. -->
 
===Buildings===
===Buildings===
Leather jackets are frequent around the map, usually in houses or clothes stores.
Leather jackets are frequent around the map, usually in houses or clothes stores.
Line 82: Line 68:
Zombies will often be found wearing leather jackets.
Zombies will often be found wearing leather jackets.


== Code ==
==Code==
<!--Comment: all the code related to the item found in txt files should be placed here-->
<!--COMMENT: Current location of Code in directory for updating purposes. Example below shows how to lay it out. ''''' is for bold italic.-->
'''''From clothing_jacket.txt (Project Zomboid directory/media/scripts/clothing)'''''
'''''From clothing_jacket.txt (Project Zomboid directory/media/scripts/clothing)'''''


<!--COMMENT: Be sure to include this "Retrieved" template, filling in the version of the game the code was retrieved.-->
{{Retrieved|version=41|incver=56}}
{{Retrieved|version=41|incver=56}}
<pre>   item JacketLong_Random
<pre>
  item JacketLong_Random
     {
     {
         Type = Clothing,
         Type = Clothing,
Line 112: Line 96:


==See also==
==See also==
<!--COMMENT: Location of links to relevant guides or other pages that may not have been mentioned on this page but still relate to the item in some way. -->
*[[Jacket]]
*[[Jacket]]
*[[Leather Jacket]]
*[[Leather Jacket]]
{{Navbox clothing}}
{{Navbox clothing}}
<!--COMMENT: Categories that aren't mentioned in the header should go here. E.g. Welder Mask uses [[Category:Construction]] -->

Revision as of 21:01, 22 June 2023

The Game WorldItemsClothingLong Leather Jacket
Leather Jacket
Long Leather Jacket
General
Category Clothing
Encumbrance
Heavy Load
2.0
Body location Jacket
Fabric Leather
Speed
Run speed 93%
Combat speed 0.97
Protection
Scratch defense 40
Bite defense 20
Neck protection 0.5
Insulation
Insulation 0.65
Wind resistance 0.35
Water resistance 0.45
Technical details
Item ID Base.JacketLong_Random

The long leather jacket is a longer version of the normal leather jacket.

Usage

Pros and cons

Pros Cons
  • Fairly easy to find
  • Good scratch and bite resistance
  • Protects well from weather
  • Provides more protection than a normal leather jacket

Item distribution

Buildings

Leather jackets are frequent around the map, usually in houses or clothes stores.

NPCs

Zombies will often be found wearing leather jackets.

Code

From clothing_jacket.txt (Project Zomboid directory/media/scripts/clothing)

Retrieved: Build 41.56

   item JacketLong_Random
    {
        Type = Clothing,
        DisplayName = Leather Jacket,
        ClothingItem = JacketLong_Random,
        BodyLocation = Jacket,
        IconsForTexture = JacketLongBlack;JacketLongBrown;JacketGreen,
        BloodLocation = LongJacket,
        RunSpeedModifier = 0.93,
        CombatSpeedModifier = 0.97,
        BiteDefense = 20,
        ScratchDefense = 40,
        NeckProtectionModifier = 0.5,
        Insulation = 0.65,
        WindResistance = 0.35,
        FabricType = Leather,
        WaterResistance = 0.45,
        Weight = 2,
        WorldStaticModel = JacketLong_Ground,
    }

See also