Crash Helmet: Difference between revisions

From PZwiki
m (Automated header update.)
m (Insert empty line above each {{Navbox}})
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{Header/sandbox2|Project Zomboid|Items|Clothing}}
{{Page version|41.65}}
{{Page version|41.65}}
{{Infobox item
{{Infobox item
| name = Crash Helmet
|name=Crash Helmet
| model = CrashHelmet_Normal.png
|model=CrashHelmet_Normal.png
| icon = HelmetCrash.png
|icon=HelmetCrash.png
| icon_name = Crash Helmet Icon
|icon_name=Crash Helmet Icon
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| equipped = Hat
|equipped=Hat
| scratch_defense = 100
|scratch_defense=100
| bite_defense = 100
|bite_defense=100
| insulation = 0.8
|insulation=0.8
| wind_resistance = 0.8
|wind_resistance=0.8
<!-- Technical details -->
<!-- Technical details -->
| item_id = Base.Hat_CrashHelmet
|item_id=Base.Hat_CrashHelmet
}}
}}
A '''crash helmet''' is a helmet worn by motorcyclists.
A '''crash helmet''' is a helmet worn by motorcyclists.
Line 24: Line 23:


==Distribution==
==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.
Crash helmets can be found on motorcyclist [[zombie]]s, as well as Repair Shops and sporting goods stores.


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


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

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