Boxing Head Gear: Difference between revisions

From PZwiki
m (Automated CodeBox update)
m (Removing trailing whitespace(s))
Line 34: Line 34:
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" |Chance
|-
|-
| closet  
| closet
| [[crate]]  
| [[crate]]
| 4  
| 4
| 4
| 4
|-
|-
| schoolstorage  
| schoolstorage
| [[crate]]  
| [[crate]]
| 4  
| 4
| 1
| 1
|}
|}

Revision as of 05:59, 28 February 2024

Project ZomboidItemsClothingBoxing Head Gear
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D model for the red model
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Boxing Head Gear
BoxingHeadgear Blue Model.png
Boxing Head Gear
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
FullHelmet
Properties
Scratch defence
50%
Bite defence
30%
Insulation
30%
Wind resistance
10%
Technical
Item ID
Base.Hat_BoxingRed
Base.Hat_BoxingBlue

Boxing head gear is a helmet that provides low insulation and protection. It has two variants: red and blue.

Distribution

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

Containers
Building/Room Container Rolls Chance
closet crate 4 4
schoolstorage crate 4 1

Boxing head gear can be found on certain zombies.

Body location

Protection FullHat.png
  • Head

Code

Boxing Head Gear (Red) Boxing Head Gear (Red)

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

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

Retrieved: Build 41.65
item Hat_BoxingRed
{
  Type                  = Clothing,
  DisplayName           = Boxing Head Gear,
  ClothingItem          = Hat_BoxingRed,
  BodyLocation          = FullHelmet,
  Icon                  = BoxingHeadgear_Red,
  CanHaveHoles          = false,
  BloodLocation         = FullHelmet,
  BiteDefense           = 30,
  ScratchDefense        = 50,
  Insulation            = 0.30,
  WindResistance        = 0.1,
}

Boxing Head Gear (Blue) Boxing Head Gear (Blue)

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

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

Retrieved: Build 41.65
item Hat_BoxingBlue
{
  Type                  = Clothing,
  DisplayName           = Boxing Head Gear,
  ClothingItem          = Hat_BoxingBlue,
  BodyLocation          = FullHelmet,
  Icon                  = BoxingHeadgear_Blue,
  CanHaveHoles          = false,
  BloodLocation         = FullHelmet,
  BiteDefense           = 30,
  ScratchDefense        = 50,
  Insulation            = 0.30,
  WindResistance        = 0.1,
}