Police Trooper Shirt: Difference between revisions

From PZwiki
m (Distribution)
(→‎Code: code box update)
Line 71: Line 71:


==Code==
==Code==
'''''From clothing_shirts.txt (Project Zomboid directory/media/scripts/clothing)'''''
{{CodeBox
{{Retrieved|version=41|incver=56}}
| {{CodeSnip
<pre>
  | lang = java
  item Shirt_PoliceBlue
  | line = true
{
  | start = 0
Type = Clothing,
  | source = clothing_shirts.txt
DisplayName = Police Trooper Shirt,
  | retrieved = true
ClothingItem = Shirt_PoliceBlue,
  | version = 41
BodyLocation = Shirt,
  | incver = 56
Icon = ShirtPoliceBlue,
  | code =
BloodLocation = ShirtLongSleeves,
item Shirt_PoliceBlue
        Insulation = 0.2,
{
        WindResistance = 0.2,
  DisplayCategory  = Clothing,
        FabricType = Cotton,
  Type             = Clothing,
        WorldStaticModel = Shirt_Ground,
  DisplayName       = Police Trooper Shirt,
}
  ClothingItem     = Shirt_PoliceBlue,
</pre>
  BodyLocation     = Shirt,
  Icon             = ShirtPoliceBlue,
  BloodLocation     = ShirtLongSleeves,
  Insulation       = 0.2,
  WindResistance   = 0.2,
  FabricType       = Cotton,
  WorldStaticModel = Shirt_Ground,
}
  }}
}}


==See also==
==See also==

Revision as of 09:53, 8 January 2024

The Game WorldItemsClothingPolice Trooper Shirt
Police Trooper Shirt
Police Trooper Shirt
General
Category Clothing
Encumbrance
Heavy Load
1.0
Body location Shirt
Fabric Cotton
Insulation
Insulation 0.2
Wind resistance 0.2
Technical details
Item ID Base.Shirt_PoliceBlue

The police trooper shirt is a button-down shirt worn by police officers in Knox Country.

Usage

Pros and cons

Pros Cons
  • Offers some water resistance and insulation
  • No scratch or bite resistance

Recipes

Police trooper shirts can be ripped apart for ripped sheets or made into sheet ropes.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Rag.png
Ripped Sheets
0.25 Tailoring none Clothing (Cotton)
Clothing (Cotton)
(consumed)

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
SheetRope.png
Sheet Rope
0 XP none
(consumed)

Body location

Protection Shirt.png
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms

Distribution

Buildings

Police station lockers will occasionally have police trooper shirts inside.

NPCs

Zombie police troopers will spawn wearing this shirt.

Code

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

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

Retrieved: Build 41.56
item Shirt_PoliceBlue
{
  DisplayCategory   = Clothing,
  Type              = Clothing,
  DisplayName       = Police Trooper Shirt,
  ClothingItem      = Shirt_PoliceBlue,
  BodyLocation      = Shirt,
  Icon              = ShirtPoliceBlue,
  BloodLocation     = ShirtLongSleeves,
  Insulation        = 0.2,
  WindResistance    = 0.2,
  FabricType        = Cotton,
  WorldStaticModel  = Shirt_Ground,
}

See also