Leather Jacket: Difference between revisions

From PZwiki
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 = JacketBlack.png
| alternate_image = JacketBlack.png
| alternate_name = Leather Jacket
| alternate_name = Leather Jacket
Line 52: Line 48:
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Jacket_Black
| class_name = Base.Jacket_Black
}}<!--
}}The '''leather jacket''' is a leather version of the normal [[Jacket]].
COMMENT: include a very brief introduction to the item
-->The '''leather jacket''' is a leather version of the normal [[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 = Common around the map
|pros1 = Common around the map
|pros2 = Strong bite and scratch resistance
|pros2 = Strong bite and scratch resistance
|pros3 = Provides protection against weather
|pros3 = Provides protection against weather
<!-- #CONS# - below this line -->
|cons1 = Can't be used to craft [[Ripped Sheets|ripped sheets]] or [[sheet rope]]
|cons1 = Can't be used to craft [[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===
The leather jacket can often be found in clothes stores and houses around the map.
The leather jacket can often be found in clothes stores and houses around the map.
Line 81: Line 67:
Zombie civilians will sometimes be wearing leather jackets.
Zombie civilians will sometimes be 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 Jacket_Black
<pre>
  item Jacket_Black
     {
     {
         Type = Clothing,
         Type = Clothing,
Line 111: Line 95:


==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 (Long)]]
*[[Leather Jacket (Long)]]
{{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 20:56, 22 June 2023

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