Leather Jacket: Difference between revisions

From PZwiki
mNo edit summary
No edit summary
Line 6: Line 6:
<!-- 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
<!-- 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
-->{{Infobox clothing
| display_name = Long 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 = 300px
| alternate_image = JacketLongBrown.png
| alternate_image = JacketBlack.png
| alternate_name = Long Leather Jacket
| alternate_name = Leather Jacket
| alternate_link =  
| alternate_link =  
| alternate_image2 =  
| alternate_image2 =  
Line 49: Line 49:
| neck_protection = 0.5
| neck_protection = 0.5
<!-- Insulation -->
<!-- Insulation -->
| insulation = 0.65
| insulation = 0.40
| wind_resistance = 0.35
| wind_resistance = 0.6
| water_resistance = 0.45
| water_resistance = 0.4
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.JacketLong_Random
| class_name = Base.Jacket_Black
}}<!--  
}}<!--  
COMMENT: include a very brief introduction to the item  
COMMENT: include a very brief introduction to the item  
-->The Long Leather Jacket is a longer version of the leather jacket.
-->The '''leather jacket''' is a leather version of the normal [[Jacket]].


__TOC__
__TOC__
Line 66: Line 66:
{{pros-cons
{{pros-cons
<!-- #PROS# - below this line -->
<!-- #PROS# - below this line -->
|pros1 = Fairly easy to find
|pros1 = Common around the map
|pros2 = Good scratch and bite resistance
|pros2 = Strong bite and scratch resistance
|pros3 = Protects well from weather
|pros3 = Provides protection against weather
<!-- #CONS# - below this line -->
<!-- #CONS# - below this line -->
|cons1 = Cannot be used to make [[Ripped Sheets|ripped sheets]] or [[sheet rope]]
|cons1 = Can't be used to craft [[Ripped Sheets|ripped sheets]] or [[sheet rope]]
}}
}}


Line 77: Line 77:


===Buildings===
===Buildings===
Long leather jackets are frequent around the map, usually in houses or clothes stores.
The leather jacket can often be found in clothes stores and houses around the map.


===NPCs===
===NPCs===
Zombies will often be found wearing long leather jackets.
Zombie civilians will sometimes be wearing leather jackets.


== Code ==
== Code ==
Line 89: Line 89:
<!--COMMENT: Be sure to include this "Retrieved" template, filling in the version of the game the code was retrieved.-->
<!--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 Jacket_Black
     {
     {
         Type = Clothing,
         Type = Clothing,
         DisplayName = Leather Jacket,
         DisplayName = Leather Jacket,
         ClothingItem = JacketLong_Random,
         ClothingItem = Jacket_Black,
         BodyLocation = Jacket,
         BodyLocation = Jacket,
         IconsForTexture = JacketLongBlack;JacketLongBrown;JacketGreen,
         Icon = JacketBlack,
         BloodLocation = LongJacket,
         BloodLocation = Jacket,
         RunSpeedModifier = 0.93,
         RunSpeedModifier = 0.95,
         CombatSpeedModifier = 0.97,
         CombatSpeedModifier = 0.97,
         BiteDefense = 20,
         BiteDefense = 20,
         ScratchDefense = 40,
         ScratchDefense = 40,
         NeckProtectionModifier = 0.5,
         NeckProtectionModifier = 0.5,
         Insulation = 0.65,
         Insulation = 0.40,
         WindResistance = 0.35,
         WindResistance = 0.6,
         FabricType = Leather,
         FabricType = Leather,
         WaterResistance = 0.45,
         WaterResistance = 0.4,
         Weight = 2,
         Weight = 2,
         WorldStaticModel = JacketLong_Ground,
         WorldStaticModel = JacketCoat_Ground,
     }
     }
</pre>
</pre>
Line 114: Line 114:
<!--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. -->
<!--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]]
*[[Long 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]] -->
<!--COMMENT: Categories that aren't mentioned in the header should go here. E.g. Welder Mask uses [[Category:Construction]] -->

Revision as of 21:11, 20 November 2021

Profession engineer.png
This is a testing feature.
This article is about an item or mechanic that is currently in testing and not part of the stable version of the game.


The Game WorldItemsClothingLeather Jacket
Leather Jacket
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.40
Wind resistance 0.6
Water resistance 0.4
Technical details
Item ID Base.Jacket_Black

The leather jacket is a leather version of the normal Jacket.

Usage

Pros and Cons

Pros Cons
  • Common around the map
  • Strong bite and scratch resistance
  • Provides protection against weather

Item Distribution

Buildings

The leather jacket can often be found in clothes stores and houses around the map.

NPCs

Zombie civilians will sometimes be wearing leather jackets.

Code

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

Retrieved: Build 41.56

   item Jacket_Black
    {
        Type = Clothing,
        DisplayName = Leather Jacket,
        ClothingItem = Jacket_Black,
        BodyLocation = Jacket,
        Icon = JacketBlack,
        BloodLocation = Jacket,
        RunSpeedModifier = 0.95,
        CombatSpeedModifier = 0.97,
        BiteDefense = 20,
        ScratchDefense = 40,
        NeckProtectionModifier = 0.5,
        Insulation = 0.40,
        WindResistance = 0.6,
        FabricType = Leather,
        WaterResistance = 0.4,
        Weight = 2,
        WorldStaticModel = JacketCoat_Ground,
    }

See also