Baseball Helmet: Difference between revisions

From PZwiki
m (Automatic formatting)
m (→‎Variants: Base→Item)
Line 38: Line 38:
! Icon
! Icon
! Name
! Name
! Base ID
! Item ID
|-
|-
| [[File:HelmetBaseballRed.png|Kentucky Baseball Helmet]]
| [[File:HelmetBaseballRed.png|Kentucky Baseball Helmet]]

Revision as of 23:39, 25 March 2024

Project ZomboidItemsClothingHeadwearHelmetsBaseball Helmet
Spiffo controlyourself.png
This page was last updated for an older version (41.65).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Baseball Helmet
BaseballHelmet Red Model.png
BaseballHelmet Green Model.png
BaseballHelmet Blue Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Properties
Combat speed
95%
Scratch defence
100%
Bite defence
100%
Insulation
30%
Technical
Item ID

A baseball helmet is a hat that provides low insulation and great protection. It has three variants that correspond to three different baseball teams.

Usage

A baseball helmet can be used to protect the wearer from attacks to the head.

Distribution

Baseball helmets can be found on certain zombies.

Body location

Protection Hat.png
  • Head

Variants

Icon Name Item ID
Kentucky Baseball Helmet Kentucky Baseball Helmet Base.Hat_BaseballHelmet_KY
Riverside Rangers Baseball Helmet Riverside Rangers Baseball Helmet Base.Hat_BaseballHelmet_Rangers
Z Hurricanes Baseball Helmet Z Hurricanes Baseball Helmet Base.Hat_BaseballHelmet_Z

Code

Kentucky Baseball Helmet Kentucky Baseball Helmet

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.78.16
item Hat_BaseballHelmet_KY
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Kentucky Baseball Helmet,
		ClothingItem = Hat_BaseballHelmet_KY,
		BodyLocation = Hat,
		Icon = HelmetBaseballRed,
		BloodLocation = FullHelmet,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.3,
	}

Riverside Rangers Baseball Helmet Riverside Rangers Baseball Helmet

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.78.16
item Hat_BaseballHelmet_Rangers
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Riverside Rangers Baseball Helmet,
		ClothingItem = Hat_BaseballHelmet_Rangers,
		BodyLocation = Hat,
		Icon = HelmetBaseballGreen,
		BloodLocation = FullHelmet,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.3,
	}

Z Hurricanes Baseball Helmet Z Hurricanes Baseball Helmet

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.78.16
item Hat_BaseballHelmet_Z
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Z Hurricanes Baseball Helmet,
		ClothingItem = Hat_BaseballHelmet_Z,
		BodyLocation = Hat,
		Icon = HelmetBaseballBlue,
		BloodLocation = FullHelmet,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.3,
	}