Police Deputy Jacket: Difference between revisions

From PZwiki
m (very minor edit)
(Add code)
 
(21 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Tops|Jackets}}
{{languages}}
{{Page version|41.65}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Police Deputy Jacket
| display_name = Police Deputy Jacket
|model=Jacket_Police_model.png
| name_colour = Clothing
|icon=JacketPolice.png
| name_text_colour = Clothing
| image = JacketPolice.png
| image_width = 300px
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 2.0
|weight=2.0
| body_location = Jacket
|equipped=Jacket
| fabric_type = Cotton
|material_type=Cotton
<!-- Speed -->
|run_speed=0.93
| run_speed = 0.93
|combat_speed=0.98
| combat_speed = 0.98
|scratch_defense=30
<!-- Protection -->
|bite_defense=20
| scratch_defense = 30
|neck_protection=0.5
| bite_defense = 20
|insulation=0.6
| neck_protection = 0.5
|wind_resistance=0.45
<!-- Insulation -->
|water_resistance=0.25
| insulation = 0.6
| wind_resistance = 0.45
| water_resistance = 0.25
<!-- Technical details -->
<!-- Technical details -->
| class_name = item Jacket_Police
|item_id=item Jacket_Police
}}
}}
The '''Police Deputy Jacket''' is a jacket worn by police officers.
The '''Police Deputy Jacket''' is a jacket worn by police officers.


==Usage==
==Usage==
Police deputy jackets provide a minor amount of protection for the wearer's neck, torso and arms from scratches and bites at the cost of a minor combat-speed and run-speed reduction.
{{Pros-cons
|pros1 = Decent amount of bite and scratch protection.
|pros2 = Provides neck protection.
|pros3 = Provides a high amount of insulation, wind resistance and a decent amount of water resistance, which makes it especially useful during cold weather and rain.
|pros4 = Not too difficult to find
|cons1 = Minor reduction to combat-speed and run-speed.
|cons2 = Quite heavy.
}}
 
==Distribution==


Police deputy jackets provide a fairly high amount of insulation, a moderate amount of wind resistance and a minor amount of water resistance.
===Buildings===
Police deputy jackets can often be found at police stations, which can found in most towns. These police stations are often infested with police officer [[zombie]]s.


Police deputy jackets 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]].
===NPCs===
==Distribution==
Police zombies can often be found in the vicinity of a police cruiser and police road barricades.
Police deputy jackets can be occasionally found on police [[zombies]]. Police zombies can rarely be found in the vicinity of areas that contain a zombie population. Police zombies can usually be found at police precincts, near police [[vehicle]]s, police barricade vehicle stories and the police intervention variant of the prison escape survivor story.  


==Body Location==
==Body location==
{| style="text-align:center;"
{| style="text-align: center;"
|<br>{{Body location|body_location=Jacket}}
|<br>{{Body location|body_location=Jacket}}
|}
|}
==Trivia==
==Trivia==
*Police deputy jackets cannot be selected in the character creation menu, even if the character has the police officer [[occupation]].
*Police deputy jackets cannot be selected in the character creation menu, even if the character has the police officer [[occupation]].
==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 341
  | source = clothing_jacket.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Jacket_Police
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Police Deputy Jacket,
        ClothingItem = Jacket_Police,
        BodyLocation = Jacket,
        Icon = JacketPolice,
        BloodLocation = Jacket,
        RunSpeedModifier = 0.93,
        CombatSpeedModifier = 0.98,
        BiteDefense = 20,
        ScratchDefense = 30,
        NeckProtectionModifier = 0.5,
        Insulation = 0.6,
        WindResistance = 0.45,
        FabricType = Cotton,
        WaterResistance = 0.25,
        Weight = 2,
        WorldStaticModel = JacketCoat_Ground,
    }
}}
}}


==See also==
==See also==
Line 53: Line 91:
*[[Police Trooper Pants]]
*[[Police Trooper Pants]]


{{clear}}
{{Navbox items|tops}}

Latest revision as of 10:18, 2 May 2024

Project ZomboidItemsClothingTopsJacketsPolice Deputy Jacket
Spiffo controlyourself.png
This page was last updated for an older version (41.65).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Police Deputy Jacket
Jacket Police model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
2.0
Equipped
Jacket
Properties
Run speed
93% (disabled)
Combat speed
98%
Scratch defence
30%
Bite defence
20%
Neck protection
50%
Insulation
60%
Wind resistance
45%
Water resistance
25%
Technical
Item ID
item Jacket_Police

The Police Deputy Jacket is a jacket worn by police officers.

Usage

Pros Cons
  • Decent amount of bite and scratch protection.
  • Provides neck protection.
  • Provides a high amount of insulation, wind resistance and a decent amount of water resistance, which makes it especially useful during cold weather and rain.
  • Not too difficult to find
  • Minor reduction to combat-speed and run-speed.
  • Quite heavy.

Distribution

Buildings

Police deputy jackets can often be found at police stations, which can found in most towns. These police stations are often infested with police officer zombies.

NPCs

Police zombies can often be found in the vicinity of a police cruiser and police road barricades.

Body location


Protection Jacket.png
  • Neck
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms

Trivia

  • Police deputy jackets cannot be selected in the character creation menu, even if the character has the police officer occupation.

Code

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

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

Retrieved: Build 41.78.16
item Jacket_Police
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Police Deputy Jacket,
        ClothingItem = Jacket_Police,
        BodyLocation = Jacket,
        Icon = JacketPolice,
        BloodLocation = Jacket,
        RunSpeedModifier = 0.93,
        CombatSpeedModifier = 0.98,
        BiteDefense = 20,
        ScratchDefense = 30,
        NeckProtectionModifier = 0.5,
        Insulation = 0.6,
        WindResistance = 0.45,
        FabricType = Cotton,
        WaterResistance = 0.25,
        Weight = 2,
        WorldStaticModel = JacketCoat_Ground,
    }

See also