Black Leather Trousers: Difference between revisions

From PZwiki
m (Automated category update)
m (addded code snippet and model image)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Clothing|Bottoms|Pants}}
{{Header|Project Zomboid|Items|Clothing|Bottoms|Pants}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D model}}
{{Stub}}
{{Stub}}
{{Infobox item
{{Infobox item
| name = Black Leather Trousers
| name = Black Leather Trousers
| icon = TrousersDenimLightBlue.png
| icon = TrousersDenimLightBlue.png
| model = Trousers_Leather_Black_Model.png
| icon2 =
| icon2 =
<!-- General -->
<!-- General -->
Line 66: Line 66:
20240129144145 1.jpg|A picture of the front of Black Leather Trousers.
20240129144145 1.jpg|A picture of the front of Black Leather Trousers.
</gallery>
</gallery>
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 687
  | source = clothing_pants.txt
  | code =
    item Trousers_LeatherBlack
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Black Leather Trousers,
        ClothingItem = Trousers_LeatherBlack,
        BodyLocation = Pants,
        BloodLocation = Trousers,
        Icon = TrousersDenimLightBlue,
        BiteDefense = 20,
        ScratchDefense = 40,
        RunSpeedModifier = 0.98,
        Insulation = 0.65,
        WindResistance = 0.60,
        FabricType = Leather,
        WorldStaticModel = Trousers_Ground,
    }
  }}
}}
==See also==
==See also==
*[[Skinny Leather Trousers]]
*[[Skinny Leather Trousers]]

Revision as of 22:54, 14 March 2024

Project ZomboidItemsClothingBottomsPantsBlack Leather Trousers
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Black Leather Trousers
Trousers Leather Black Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1
Equipped
Pants
Properties
Scratch defence
60%
Bite defence
40%
Technical
Item ID
Base.Trousers_LeatherBlack

Black leather trousers are an exceptionally rare piece of armor that takes the Legs clothing slot. They, along with skinny leather trousers offer the most resistance out of any pair of pants, with a potential total of 40% bite and 60% scratch resistance. They share the same item sprite as jeans. Black leather trousers offer more defense than firefighter pants, while also being much lighter.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
SafehouseLoot crate 4 4
clothingstorage crate 4 2
leatherclothesstore shelves 4 1
shelves 4 1
shelves 4 1
shelves 4 1

They can very rarely be seen being worn by Biker Zombies, in survivor homes, or more commonly (but still extremely rarely) in clothing stores & outlets as well.

Gallery

Code

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

Source: ProjectZomboid\media\scripts\clothing\clothing_pants.txt

item Trousers_LeatherBlack
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Black Leather Trousers,
        ClothingItem = Trousers_LeatherBlack,
        BodyLocation = Pants,
        BloodLocation = Trousers,
        Icon = TrousersDenimLightBlue,
        BiteDefense = 20,
        ScratchDefense = 40,
        RunSpeedModifier = 0.98,
        Insulation = 0.65,
        WindResistance = 0.60,
        FabricType = Leather,
        WorldStaticModel = Trousers_Ground,
    }

See also