Firefighter Pants: Difference between revisions

From PZwiki
m (Automated header update.)
m (Automated Formatting)
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Clothing|Bottoms|Pants}}
{{Header/sandbox2|Project Zomboid|Items|Clothing}}
{{Page version|41.78.16}}
{{Page version|41.53}}
{{Infobox item
{{Infobox item
| name = Firefighter Pants
|name=Firefighter Pants
| model = TrousersFireman.png
|model=Trousers_Fireman_model.png
| icon = TrousersFireman.png
|icon=TrousersFireman.png
| icon_name = Firefighter Pants
|icon_name=Firefighter Pants
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 4.0
|weight=4.0
| equipped = Pants
|equipped=Pants
| run_speed = 0.82
|run_speed=0.82
| scratch_defense = 30
|scratch_defense=30
| bite_defense = 20
|bite_defense=20
| insulation = 0.85
|insulation=0.85
| wind_resistance = 0.85
|wind_resistance=0.85
| water_resistance = 0.8
|water_resistance=0.8
<!-- Technical details -->
<!-- Technical details -->
| item_id = Base.Trousers_Fireman
|item_id=Base.Trousers_Fireman
}}'''Firefighter pants''' are a pair of trousers worn by firefighters. Players with the Fire Officer occupation can select the firefighter pants in the character creation menu.
}}
'''Firefighter pants''' are a pair of trousers worn by firefighters. Players with the Fire Officer occupation can select the firefighter pants in the character creation menu.


==Usage==
==Usage==
Firefighter pants provide the most amount of bite and scratch protection of any pants at the cost of a significant reduction in run-speed. Firefighter pants provide a very high amount of insulation, wind resistance and water resistance.
Firefighter pants provide the most amount of bite and scratch protection of any pants at the cost of a significant reduction in run-speed. Firefighter pants provide a very high amount of insulation, wind resistance and water resistance.


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 31: Line 30:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| bathroom
|bathroom
| [[locker]]
|[[locker]]
| 4
|4
| 8
|8
|-
|-
| rowspan="2"|firestorage
|rowspan="2"|firestorage
| [[metal_shelves]]
|[[metal_shelves]]
| 4
|4
| 1
|1
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]
Line 54: Line 53:
==Body location==
==Body location==
{{Body location|body_location=Pants}}
{{Body location|body_location=Pants}}
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 438
  | source = clothing_pants.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Trousers_Fireman
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Firefighter Pants,
        ClothingItem = Trousers_Fireman,
        BodyLocation = Pants,
        Icon = TrousersFireman,
        BloodLocation = Trousers,
        RunSpeedModifier = 0.82,
        BiteDefense = 20,
        ScratchDefense = 30,
        Insulation = 0.85,
        WindResistance = 0.85,
        WaterResistance = 0.8,
        Weight = 4,
        WorldStaticModel = Trousers_Ground,
    }
}}
}}


==See also==
==See also==
Line 59: Line 89:
*[[Firefighter Jacket]]
*[[Firefighter Jacket]]


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

Revision as of 08:28, 14 April 2024

Project ZomboidItemsClothingBottomsPantsFirefighter Pants
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Firefighter Pants
Trousers Fireman model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
4.0
Equipped
Pants
Properties
Run speed
82% (disabled)
Scratch defence
30%
Bite defence
20%
Insulation
85%
Wind resistance
85%
Water resistance
80%
Technical
Item ID
Base.Trousers_Fireman

Firefighter pants are a pair of trousers worn by firefighters. Players with the Fire Officer occupation can select the firefighter pants in the character creation menu.

Usage

Firefighter pants provide the most amount of bite and scratch protection of any pants at the cost of a significant reduction in run-speed. Firefighter pants provide a very high amount of insulation, wind resistance and water resistance.

Distribution

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

Containers
Building/Room Container Rolls Chance
bathroom locker 4 8
firestorage metal_shelves 4 1
metal_shelves 4 2

Firefighter pants can be found on firefighter zombies which can usually be found near the fire department in Rosewood, crashed fire department vehicles and burnt-down houses.

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_Fireman
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Firefighter Pants,
        ClothingItem = Trousers_Fireman,
        BodyLocation = Pants,
        Icon = TrousersFireman,
        BloodLocation = Trousers,
        RunSpeedModifier = 0.82,
        BiteDefense = 20,
        ScratchDefense = 30,
        Insulation = 0.85,
        WindResistance = 0.85,
        WaterResistance = 0.8,
        Weight = 4,
        WorldStaticModel = Trousers_Ground,
    }

See also