Chef Pants: Difference between revisions

From PZwiki
m (Automated header update.)
m (Move See also below)
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Clothing}}
{{Header|Project Zomboid|Items|Clothing|Bottoms|Pants}}
{{Page version|41.24}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
| name = Chef Pants
|name=Chef Pants
| model = TrousersChef_Model.png
|model=TrousersChef_Model.png
| icon = TrousersChef.png
|icon=TrousersChef.png
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| equipped = Pants
|equipped=Pants
| material_type = Cotton
|material_type=Cotton
| insulation = 0.4
|insulation=0.4
| wind_resistance = 0.1
|wind_resistance=0.1
<!-- Technical details -->
<!-- Technical details -->
| item_id = item Trousers_Chef
|item_id=item Trousers_Chef
}}
}}
'''Chef pants''' are a pair of checkered black and white pants worn by chefs. Chef pants can be selected in the character creation menu by characters with the chef or burger flipper [[occupation]].
'''Chef pants''' are a pair of checkered black and white pants worn by chefs. Chef pants can be selected in the character creation menu by characters with the chef or burger flipper [[occupation]].
Line 20: Line 20:
Chef pants provide a moderate amount of insulation and a minor amount of wind resistance for the wearer's groin, thighs, and shins.
Chef pants provide a moderate amount of insulation and a minor amount of wind resistance for the wearer's groin, thighs, and shins.


Chef pants can be converted into a [[Sheet Rope]] which can be used for climbing up or safely descending floors or torn for [[Ripped Sheets|ripped sheets]] which can be used as makeshift bandages, components in various recipes and material for [[tailoring]].
Chef pants can be converted into a [[Sheet Rope|sheet rope]] which can be used for climbing up or safely descending floors or torn for [[Ripped Sheets|ripped sheets]] which can be used as makeshift bandages, components in various recipes and material for [[tailoring]].


The pants can be repaired or reinforced for extra bite and scratch protection with the use of the tailoring skill.
The pants can be repaired or reinforced for extra bite and scratch protection with the use of the tailoring skill.
Line 29: Line 29:
==Body location==
==Body location==
{{Body location|body_location=Pants}}
{{Body location|body_location=Pants}}
==See also==
*[[Chef Jacket]]
*[[Chef Hat]]
*[[Apron]]


==Code==
==Code==
Line 40: Line 35:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 365
   | source = items.txt
   | source = clothing_pants.txt
  | retrieved = true
  | version = 41.78.16
   | code =
   | code =
item Trousers_Chef
item Trousers_Chef
{
    {
    DisplayCategory = Clothing,
        DisplayCategory = Clothing,
    Type = Clothing,
        Type = Clothing,
    DisplayName = Chef Pants,
        DisplayName = Chef Pants,
    ClothingItem = Trousers_Chef,
        ClothingItem = Trousers_Chef,
    BodyLocation = Pants,
        BodyLocation = Pants,
    Icon = TrousersChef,
        Icon = TrousersChef,
    BloodLocation = Trousers,
        BloodLocation = Trousers,
    Insulation = 0.4,
        Insulation = 0.4,
    WindResistance = 0.1,
        WindResistance = 0.1,
    FabricType = Cotton,
        FabricType = Cotton,
    WorldStaticModel = Trousers_Ground,
        WorldStaticModel = Trousers_Ground,
}
    }
  }}
}}
}}
}}
==See also==
*[[Chef Jacket]]
*[[Chef Hat]]
*[[Apron]]


{{Navbox clothing}}
{{Navbox items|bottoms}}

Latest revision as of 22:29, 15 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Chef Pants
TrousersChef Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Pants
Properties
Insulation
40%
Wind resistance
10%
Technical
Item ID
item Trousers_Chef

Chef pants are a pair of checkered black and white pants worn by chefs. Chef pants can be selected in the character creation menu by characters with the chef or burger flipper occupation.

Usage

Chef pants provide a moderate amount of insulation and a minor amount of wind resistance for the wearer's groin, thighs, and shins.

Chef pants can be converted into a sheet rope which can be used for climbing up or safely descending floors or torn for ripped sheets which can be used as makeshift bandages, components in various recipes and material for tailoring.

The pants can be repaired or reinforced for extra bite and scratch protection with the use of the tailoring skill.

Distribution

Chef pants can be found on chef zombies. Chef zombies can usually be found at restaurants and fast-food locations.

Body location

Protection Pants.png
  • Groin
  • Thighs
  • Shins

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_Chef
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Chef Pants,
        ClothingItem = Trousers_Chef,
        BodyLocation = Pants,
        Icon = TrousersChef,
        BloodLocation = Trousers,
        Insulation = 0.4,
        WindResistance = 0.1,
        FabricType = Cotton,
        WorldStaticModel = Trousers_Ground,
    }

See also