Motorcycle Helmet: Difference between revisions

From PZwiki
(Created page with "{{Testing|build=Build 41}} {{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=24}} {{Infobox clothing | display_name = Motorcycle Helmet | name...")
 
(Add code)
 
(26 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{languages}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=24}}
{{Infobox item
{{Infobox clothing
|name=Motorcycle Helmet
| display_name = Motorcycle Helmet
|model=CrashHelmetFULL3D.png
| name_colour = Clothing
|icon=HelmetMotorcycleFullBlue.png
| name_text_colour = Clothing
|icon_name=Blue Motorcycle Helmet Icon
| image = CrashHelmetFULL3D.png
|icon2=HelmetMotorcycleFullBlack.png
| image_width = 300px
|model2=CrashHelmetFULLBLACK3D.png
| alternate_image = HelmetMotorcycleFullBlue.png
|icon_name2=Black Motorcycle Helmet Icon
| alternate_name = Blue Motorcycle Helmet Icon
|icon3=HelmetMotorcycleFullRed.png
| alternate_image2 = HelmetMotorcycleFullBlack.png
|model3=CrashHelmetFULLRED3D.png
| alternate_name2 = Black Motorcycle Helmet Icon
|icon_name3=Red Motorcycle Helmet Icon
| alternate_image3 = HelmetMotorcycleFullRed.png
| alternate_name3 = Red Motorcycle Helmet Icon
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = FullHat
|equipped=FullHat
<!-- Speed -->
|combat_speed=0.95
| combat_speed = 0.95
|scratch_defense=100
<!-- Protection -->
|bite_defense=100
| scratch_defense = 100
|neck_protection=1.0
| bite_defense = 100
|insulation=1.0
| neck_protection = 1.0
|wind_resistance=1.0
<!-- Insulation -->
| insulation = 1.0
| wind_resistance = 1.0
<!-- Technical details -->
<!-- Technical details -->
| class_name = Hat_CrashHelmetFULL
|item_id=Hat_CrashHelmetFULL
}}The '''Motorcycle Helmet''' is a helmet that's used by motorcyclists. The motorcycle helmet has three variants; blue, black and red.
}}
The '''Motorcycle Helmet''' is a helmet that's used by motorcyclists. The motorcycle helmet has three variants; blue, black and red.


==Usage==
==Usage==
The Motorcycle Helmet completely protects the wearer's head and neck from scratches and bites at the cost of a minor penalty to combat-speed. Motorcycle helmets have the maximum amount of insulation and wind resistance. The helmet has an extremely low chance of falling off when the wearer is attacked.
{{pros-cons
<!-- #PROS# - below this line -->
|pros1 = Completely protects wearer's head from bites and scratches.
|pros2 = Perfect for winter, due to it's maximum amount of insulation and wind resistance.
|pros3 = Will not fall off when the wearer is attacked.
<!-- #CONS# - below this line -->
|cons1 = Minor combat-speed reduction.
|cons2 = Difficult to find.
}}
 
==Distribution==
==Distribution==
Motorcycle helmets can be found off of motorcyclist [[zombie]]s.
Motorcycle helmets can be found off of motorcyclist [[zombie]]s.
Line 39: Line 44:
{{Body location|body_location=FullHat}}
{{Body location|body_location=FullHat}}


==Gallery==
==Code==
<gallery>
{{CodeBox|
File:CrashHelmetFULLBLACK3D.png|Black/Zomboid Motorcycle Helmet variant.
{{CodeSnip
File:CrashHelmetFULLRED3D.png|Red Motorcycle Helmet variant.
  | lang = java
</gallery>
  | line = true
  | start = 433
  | source = clothing_hats.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Hat_CrashHelmetFULL
{
    DisplayCategory = Accessory,
Type = Clothing,
DisplayName = Motorcycle Helmet,
ClothingItem = Hat_CrashHelmetFULL,
BodyLocation = FullHat,
IconsForTexture = HelmetMotorcycleFullBlue;HelmetMotorcycleFullBlack;HelmetMotorcycleFullRed,
BloodLocation = FullHelmet,
CanHaveHoles = false,
CombatSpeedModifier = 0.95,
BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 1.0,
        WindResistance = 1.0,
}
}}
}}


{{Navbox_clothing}}
==See also==


{{clear}}
{{Navbox items|headwear}}

Latest revision as of 10:14, 2 May 2024

Project ZomboidItemsClothingHeadwearHelmetsMotorcycle Helmet
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Motorcycle Helmet
CrashHelmetFULL3D.png
CrashHelmetFULLBLACK3D.png
CrashHelmetFULLRED3D.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
FullHat
Properties
Combat speed
95%
Scratch defence
100%
Bite defence
100%
Neck protection
100%
Insulation
100%
Wind resistance
100%
Technical
Item ID
Hat_CrashHelmetFULL

The Motorcycle Helmet is a helmet that's used by motorcyclists. The motorcycle helmet has three variants; blue, black and red.

Usage

Pros Cons
  • Completely protects wearer's head from bites and scratches.
  • Perfect for winter, due to it's maximum amount of insulation and wind resistance.
  • Will not fall off when the wearer is attacked.
  • Minor combat-speed reduction.
  • Difficult to find.

Distribution

Motorcycle helmets can be found off of motorcyclist zombies.

Body location

Protection FullHat.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_CrashHelmetFULL
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Motorcycle Helmet,
		ClothingItem = Hat_CrashHelmetFULL,
		BodyLocation = FullHat,
		IconsForTexture = HelmetMotorcycleFullBlue;HelmetMotorcycleFullBlack;HelmetMotorcycleFullRed,
		BloodLocation = FullHelmet,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 1.0,
        WindResistance = 1.0,
	}

See also