Crash Helmet: Difference between revisions

From PZwiki
(Created page with "{{Testing|build=Build 41}} {{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}} {{Infobox clothing | display_name = Crash Helmet...")
 
m (Automated Formatting)
 
(26 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{languages}}
{{Page version|41.65}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Crash Helmet
| display_name = Crash Helmet
|model=CrashHelmet_Normal.png
| name_colour = Clothing
|icon=HelmetCrash.png
| name_text_colour = Clothing
|icon_name=Crash Helmet Icon
| image = CrashHelmet_Normal.png
| image_width = 300px
| alternate_image = HelmetCrash.png
| alternate_name = Crash Helmet Icon
 
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = Hat
|equipped=Hat
<!-- Protection -->
|scratch_defense=100
| scratch_defense = 100
|bite_defense=100
| bite_defense = 100
|insulation=0.8
 
|wind_resistance=0.8
<!-- Technical details -->
<!-- Technical details -->
| class_name = item Hat_CrashHelmet
|item_id=Base.Hat_CrashHelmet
}}
}}
A '''crash helmet''' is a helmet worn by motorcyclists.
==Usage==
Crash Helmets completely protect the wearer's head from scratches and bites. Motorcycle helmets provide a great amount of insulation and wind resistance. The helmet also has a no chance of falling off when the wearer is attacked.


The '''Crash Helmet''' is a motorcycle helmet that completely shields the wearer's head from scratches and bites. The Crash Helmet can be found on reanimated motorcyclists.
==Distribution==
Crash helmets can be found on motorcyclist [[zombie]]s, as well as Repair Shops and sporting goods stores.


==Body location==
==Body location==
{{Body location|body_location=Hat}}
{{Body location|body_location=Hat}}


==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 417
  | source = clothing_hats.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Hat_CrashHelmet
{
    DisplayCategory = Accessory,
Type = Clothing,
DisplayName = Crash Helmet,
ClothingItem = Hat_CrashHelmet,
BodyLocation = Hat,
Icon = HelmetCrash,
BloodLocation = Head,
CanHaveHoles = false,
        BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.8,
        WindResistance = 0.8,
}
}}
}}


 
==See also==
{{clear}}
{{Navbox items|headwear}}

Latest revision as of 07:51, 14 April 2024

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.
Crash Helmet
CrashHelmet Normal.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Properties
Scratch defence
100%
Bite defence
100%
Insulation
80%
Wind resistance
80%
Technical
Item ID
Base.Hat_CrashHelmet

A crash helmet is a helmet worn by motorcyclists.

Usage

Crash Helmets completely protect the wearer's head from scratches and bites. Motorcycle helmets provide a great amount of insulation and wind resistance. The helmet also has a no chance of falling off when the wearer is attacked.

Distribution

Crash helmets can be found on motorcyclist zombies, as well as Repair Shops and sporting goods stores.

Body location

Protection Hat.png
  • Head

Code

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_CrashHelmet
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Crash Helmet,
		ClothingItem = Hat_CrashHelmet,
		BodyLocation = Hat,
		Icon = HelmetCrash,
		BloodLocation = Head,
		CanHaveHoles = false,
        BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.8,
        WindResistance = 0.8,
	}

See also