Black Leather Trousers: Difference between revisions

From PZwiki
No edit summary
m (Automated CodeBox update)
 
(25 intermediate revisions by 9 users not shown)
Line 1: Line 1:
Black Leather Trousers are an exceptionally rare piece of armor that takes the Legs clothing slot. It offers the most resistance out of any pair of pants, with a potential total resistance of 40% bite 60% Scratch.
{{Header|Project Zomboid|Items|Clothing|Bottoms|Pants}}
{{Page version|41.78.16}}
{{Stub}}
{{Infobox item
|name=Black Leather Trousers
|model=Trousers_Leather_Black_Model.png
|icon=TrousersDenimLightBlue.png
|icon_name=Black Leather Trousers
<!-- General -->
|category=Clothing
|equipped=Pants
|scratch_defense=60
|bite_defense=40
<!-- Technical details -->
|item_id=Base.Trousers_LeatherBlack
}}


They can very rarely be seen being worn by Biker Zombies or more commonly (but still extremely rare) in clothing stores & outlets.
'''Black leather trousers''' are an exceptionally rare piece of armor that takes the ''Legs'' clothing slot. They, along with [[Skinny Leather Trousers|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.
They share the same item sprite as Jeans.


This page needs more work done by a more experienced wiki-creator.
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|SafehouseLoot
|[[crate]]
|4
|4
|-
|clothingstorage
|[[crate]]
|4
|2
|-
|rowspan="4"|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==
<gallery>
20240129144234 1.jpg|A picture of Black Leather Trousers on a rough concrete surface.
20240129144201 1.jpg|A picture of the left of Black Leather Trousers.
20240129144159 1.jpg|A picture of the back of Black Leather Trousers.
20240129144156 1.jpg|A picture of the right of Black Leather Trousers.
20240129144145 1.jpg|A picture of the front of Black Leather Trousers.
</gallery>
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 298
  | source = clothing_pants.txt
  | retrieved = true
  | version = 41.78.16
  | 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==
*[[Skinny Leather Trousers]]
*[[Jeans]]
 
{{Navbox clothing|bottoms}}

Latest revision as of 09:10, 26 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

Retrieved: Build 41.78.16
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