Pants (jeans): Difference between revisions

From PZwiki
m (Automatic formatting)
m (→‎Variants: Base→Item)
Line 29: Line 29:
! Name
! Name
! Color
! Color
! Base ID
! Item ID
|-
|-
| [[File:TrousersGeneric.png|Pants]]
| [[File:TrousersGeneric.png|Pants]]

Revision as of 23:41, 25 March 2024

Project ZomboidItemsClothingBottomsPantsPants (jeans)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Pants
Pants (blue)
Pants (gray)
Pants (colored)
General
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Legs
Properties
Insulation
50%
Wind resistance
25%
Technical
Item ID
Base.Trousers_DefaultTEXTURE
Base.Trousers_DefaultTEXTURE_HUE
Base.Trousers_DefaultTEXTURE_TINT

Jeans pants are an article of clothing equipable on the legs. Despite being called jeans in the texture, these are made from cotton.

Variants

Jeans pants have three variants, one being always blue, another always gray, and another with a random color, identical in parameters.

Icon Name Color Item ID
Pants Pants Only blue Base.Trousers_DefaultTEXTURE
Pants Pants Only gray, random hueFuture Base.Trousers_DefaultTEXTURE_HUE
Pants Pants Any Base.Trousers_DefaultTEXTURE_TINT

Usage

Pros and cons

Pros Cons
  • Can come in various colors.
  • Does not slow movement.
  • Can be torn down and reinforced.
  • Low insulation and wind resistance.
  • No scratch or bite protection.
  • No water resistance.

Crafting

White pants can be used to make ripped sheets or sheet ropes.

Product XP gained Skill(s) Recipe Ingredient 1
Rag.png
Ripped Sheets
0.25 Tailoring none
(consumed)
SheetRope.png
Sheet Rope
0 XP none
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
all dresser 4 2
locker 4 2
locker 4 2
wardrobe 4 2
wardrobe 4 2
wardrobe 4 0.5
wardrobe 4 2
wardrobe 4 2
bedroom dresser 4 2
wardrobe 4 2

Code

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

TrousersDenimBlue.png Base.Trousers_DefaultTEXTURE
Source: ProjectZomboid\media\scripts\clothing\clothing_pants.txt

Retrieved: Build 41.78.16
item Trousers_DefaultTEXTURE
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Pants,
        ClothingItem = Trousers_DefaultTEXTURE,
        BodyLocation = Pants,
        Icon = TrousersDenimBlue,
        BloodLocation = Trousers,
        Insulation = 0.5,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = Trousers_Ground,
    }

TrousersDenimBlack.png Base.Trousers_DefaultTEXTURE_HUE
Source: ProjectZomboid\media\scripts\clothing\clothing_pants.txt

Retrieved: Build 41.78.16
item Trousers_DefaultTEXTURE_HUE
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Pants,
        ClothingItem = Trousers_DefaultTEXTURE_HUE,
        BodyLocation = Pants,
        Icon = TrousersDenimBlack,
        BloodLocation = Trousers,
        Insulation = 0.5,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = Trousers_Ground,
    }

TrousersDenimBlue.png Base.Trousers_DefaultTEXTURE_TINT
Source: ProjectZomboid\media\scripts\clothing\clothing_pants.txt

Retrieved: Build 41.78.16
item Trousers_DefaultTEXTURE_TINT
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Pants,
        ClothingItem = Trousers_DefaultTEXTURE_TINT,
        BodyLocation = Pants,
        Icon = TrousersDenimBlue,
        BloodLocation = Trousers,
        Insulation = 0.5,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = Trousers_Ground,
    }

See also