Bulletproof Vest (disambiguation): Difference between revisions

From PZwiki
No edit summary
mNo edit summary
Line 46: Line 46:
| wind_resistance = 0.30
| wind_resistance = 0.30
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Vest_BulletMilitary<br>Base.Vest_BulletCivilian<br>Base.Vest_BulletPolice
| class_name = Base.Vest_BulletArmy<br>Base.Vest_BulletCivilian<br>Base.Vest_BulletPolice
}}<!--  
}}<!--  
COMMENT: include a very brief introduction to the item  
COMMENT: include a very brief introduction to the item  

Revision as of 20:17, 25 January 2022

The Game WorldItemsClothingBulletproof Vest (disambiguation)
Bulletproof Vest
Military Bulletproof Vest Civilian Bulletproof Vest Police Bulletproof Vest
General
Category Clothing
Encumbrance
Heavy Load
1.0
Body location Torso Extra
Protection
Scratch defense 30
Bite defense 55
Bullet defense 100
Insulation
Insulation 0.65
Wind resistance 0.30
Technical details
Item ID Base.Vest_BulletArmy
Base.Vest_BulletCivilian
Base.Vest_BulletPolice

The bulletproof vest is a bullet resistant item of clothing that can be worn on top of other clothes on the player's torso.

It provides protection against bullets, as well as zombie bites and scratches. It comes in three variants, all with the same functionality, albeit with different appearances and environmental protection.

Usage

Pros and Cons

Pros Cons
  • Very good bite and scratch resistance
  • Excellent bullet resistance
  • Okay wind resistance and good insulation
  • Does not cover arms or neck
  • Cannot be repaired with Tailoring

Body location

Protection TankTop.png
  • Upper Torso
  • Lower Torso

Item Distribution

Buildings

The bulletproof vest can be found at police stations across the map.

NPCs

Bulletproof vests can be found on zombie soldiers at the military base. They can also be found on zombified police officers.

Code

From clothing_shirts.txt (Project Zomboid directory/media/scripts/clothing)

Military Bulletproof Vest Retrieved: Build 41.56

  item Vest_BulletArmy
    {
        Type = Clothing,
        DisplayName = Military Bulletproof Vest,
        ClothingItem = Vest_BulletArmy,
        BodyLocation = TorsoExtra,
        Icon = BulletVestCamo,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.75,
        WindResistance = 0.45,
        BiteDefense = 30,
        ScratchDefense = 55,
        BulletDefense = 100,
        WorldStaticModel = BulletVest_Ground,
    }

Civilian Bulletproof Vest Retrieved: Build 41.56

  item Vest_BulletCivilian
    {
        Type = Clothing,
        DisplayName = Civilian Bulletproof Vest,
        ClothingItem = Vest_BulletCivilian,
        BodyLocation = TorsoExtra,
        Icon = BulletVestWhite,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.6,
        WindResistance = 0.25,
        BiteDefense = 30,
        ScratchDefense = 55,
        BulletDefense = 100,
        WorldStaticModel = BulletVest_Ground,
    }

Police Bulletproof Vest Retrieved: Build 41.56

 item Vest_BulletPolice

    {
        Type = Clothing,
        DisplayName = Police Bulletproof Vest,
        ClothingItem = Vest_BulletPolice,
        BodyLocation = TorsoExtra,
        Icon = BulletVestPolice,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.65,
        WindResistance = 0.30,
        BiteDefense = 30,
        ScratchDefense = 55,
        BulletDefense = 100,
        WorldStaticModel = BulletVest_Ground,
    }