Crash Helmet: Difference between revisions

From PZwiki
mNo edit summary
m (Insert empty line above each {{Navbox}})
 
(29 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.


The '''Crash Helmet''' is a motorcycle helmet that shields the wearer's head from scratches and bites. The Crash Helmet can be found on reanimated 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==
 
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|Hat_CrashHelmet|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Hat_CrashHelmet distribution
        <span class="mw-customtoggle-togglebox-Hat_CrashHelmet" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Hat_CrashHelmet">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | bathroom
    | {{ll|locker}}
    | 4
    | 1.0
    |-
    | pawnshopoffice
    | {{ll|crate}}
    | 4
    | 2.0
    |}
</div>
<div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Vehicles}}
    ! Vehicle Type/Location
    ! Rolls
    ! Chance
    |-
    | PoliceTruckBed
    | 4
    | 2
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Hat_CrashHelmet" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Hat_CrashHelmet|41.78.16-->
 
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 14:50, 25 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

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

Hat_CrashHelmet distribution Show / Hide
Containers
Building / Room Container Rolls Chance
bathroom locker 4 1.0
pawnshopoffice crate 4 2.0
Vehicles
Vehicle Type/Location Rolls Chance
PoliceTruckBed 4 2

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