Hunting Vest (disambiguation)

From PZwiki
Revision as of 05:10, 24 July 2022 by MadJack83 (talk | contribs) (Page Created)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The Game WorldItemsClothingHunting Vest (disambiguation)
Hunting Vest
Camo Hunting Vest Gray Hunting Vest Green Camo Hunting Vest Orange Hunting Vest
General
Category Clothing
Encumbrance
Heavy Load
1.0
Body location Torso Extra
Protection
Scratch defense 0
Bite defense 0
Insulation
Insulation 0.80
Wind resistance 0.65
Technical details
Item ID Base.Vest_Hunting_Camo
Base.Vest_Hunting_Grey
Base.Vest_Hunting_CamoGreen
Base.Vest_Hunting_Orange

The Hunting Vest is a sleeveless vest commonly used by hunters found around Knox County.

Usage

Pros and Cons

Pros Cons
  • Excellent insulation and wind resistance

Body location

Protection TankTop.png
  • Upper Torso
  • Lower Torso

Variants

The Hunting vest can appear in four variants, each with slightly varying stats.

Icon Name Description Insulation Wind Resistance Base ID
Camo Hunting Vest Camo Hunting Vest Camouflage Hunting Vest 80% 65% Base.Vest_Hunting_Camo
Gray Hunting Vest Gray Hunting Vest Gray Colored Hunting Vest 90% 80% Base.Vest_Hunting_Grey
Green Camo Hunting Vest Green Camo Hunting Vest Alternate Style Camouflage Hunting Vest 70% 80% Base.Vest_Hunting_CamoGreen
Orange Hunting Vest Orange Hunting Vest High Visibility Orange Hunting Vest 75% 75% Base.Vest_Hunting_Orange

Item Distribution

Buildings

The bulletproof vest can be found in farm and gun stores as well as wilderness cabins.

NPCs

Bulletproof vests can occasionally be found on zombified hunters.

Code

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

Camo Hunting Vest Retrieved: Build 41.73

  item Vest_Hunting_Camo
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Camo Hunting Vest,
        ClothingItem = Vest_Hunting_Camo,
        BodyLocation = TorsoExtra,
        Icon = Huntingvest_Camo,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.8,
        WindResistance = 0.65,
        WorldStaticModel = HuntingVest_Ground,
    }

Grey Hunting Vest Retrieved: Build 41.73

  item Vest_Hunting_Grey
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Grey Hunting Vest,
        ClothingItem = Vest_Hunting_Grey,
        BodyLocation = TorsoExtra,
        Icon = Huntingvest_Grey,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.90,
        WindResistance = 0.80,
        WorldStaticModel = HuntingVest_Ground,
    }

Green Camo Hunting Vest Retrieved: Build 41.73

 item Vest_Hunting_CamoGreen
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Green Camo Hunting Vest,
        ClothingItem = Vest_Hunting_CamoGreen,
        BodyLocation = TorsoExtra,
        Icon = Huntingvest_Camo,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.70,
        WindResistance = 0.80,
        WorldStaticModel = HuntingVest_Ground,
    }

Orange Hunting Vest Retrieved: Build 41.73

 item Vest_Hunting_Orange
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Orange Hunting Vest,
        ClothingItem = Vest_Hunting_Orange,
        BodyLocation = TorsoExtra,
        Icon = Huntingvest_Orange,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.75,
        WindResistance = 0.75,
        WorldStaticModel = HuntingVest_Ground,
    }