Boxing Gloves

From PZwiki
Project ZomboidItemsClothingGlovesBoxing Gloves
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Boxing Gloves
BoxingGloves Red Model.png
BoxingGloves Blue Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Hands
Properties
Insulation
25%
Wind resistance
30%
Technical
Item ID
Base.Gloves_BoxingRed
Base.Gloves_BoxingBlue

Boxing gloves are worn on the hands, they come in two colors, red, and blue.

Usage

Boxing gloves are worn on the hands. They provide the same insulation and wind resistance as surgical gloves and fingerless gloves.

Body location

Protection Hands.png
  • Hands

Distribution

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

Containers
Building/Room Container Rolls Chance
all postbox 4 4
closet crate 4 4

Code

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

BoxingGloves Red.png Base.Gloves_BoxingRed
Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Gloves_BoxingRed
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Boxing Gloves,
		ClothingItem = Gloves_BoxingRed,
		BodyLocation = Hands,
		BloodLocation = Hands,
		Icon = BoxingGloves_Red,
		Weight = 0.1,
        Insulation = 0.25,
        WindResistance = 0.3,
        WorldStaticModel = BoxingGlovesRed_Ground,
	}

BoxingGloves Blue.png Base.Gloves_BoxingBlue
Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Gloves_BoxingBlue
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Boxing Gloves,
		ClothingItem = Gloves_BoxingBlue,
		BodyLocation = Hands,
		BloodLocation = Hands,
		Icon = BoxingGloves_Blue,
		Weight = 0.1,
        Insulation = 0.25,
        WindResistance = 0.3,
        WorldStaticModel = BoxingGlovesBlue_Ground,
	}

See also