Hockey Helmet: Difference between revisions

From PZwiki
m (Spelling correction)
m (Insert empty line above each {{Navbox}})
 
(26 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=65|hidecat=true}}
{{Page version|41.65}}
{{Infobox clothing
{{Stub}}
| display_name = Hockey Helmet
{{Infobox item
| name_colour = Clothing
|name=Hockey Helmet
| name_text_colour = Clothing
|model=HelmetHockey_Model.png
| alternate_image = HelmetHockeyBlack.png
|icon=HelmetHockeyBlack.png
| alternate_name = Hockey Helmet
|icon_name=Hockey Helmet
| alternate_link =
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = Hat
|equipped=Hat
<!-- Insulation -->
| insulation = 0
| wind_resistance = 0
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Hat_HockeyHelmet
|item_id=Base.Hat_HockeyHelmet
}}A '''Hockey Helmet''' is a helmet used by hockey players.
}}
A '''hockey helmet''' is a helmet used by hockey players.


==Usage==
==Usage==
Line 24: Line 21:
==Body location==
==Body location==
{{Body location|body_location=Hat}}
{{Body location|body_location=Hat}}
==Distribution==
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|Hat_HockeyHelmet|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Hat_HockeyHelmet distribution
        <span class="mw-customtoggle-togglebox-Hat_HockeyHelmet" 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_HockeyHelmet">
    <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
    |-
    | SafehouseLoot
    | {{ll|crate}}
    | 4
    | 2.0
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 0.2
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 2.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 20.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Hat_HockeyHelmet" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Hat_HockeyHelmet|41.78.16-->


==Code==
==Code==
'''''From clothing_hats.txt (Project Zomboid directory/media/scripts/clothing)'''''
{{CodeBox
{{Retrieved|version=41|incver=65}}
| {{CodeSnip
<pre> item Hat_BicycleHelmet
  | lang = java
DisplayCategory = Accessory,
  | line = true
Type = Clothing,
  | start = 377
DisplayName = Hockey Helmet,
  | source = clothing_hats.txt
ClothingItem = Hat_HockeyHelmet,
  | retrieved = true
BodyLocation = Hat,
  | version = 41.78.16
Icon = HelmetHockeyBlack,
  | code =
CanHaveHoles = false,
item Hat_BicycleHelmet
BloodLocation = Head,
{
BiteDefense = 100,
    DisplayCategory = Accessory,
ScratchDefense = 100,
Type = Clothing,
</pre>
DisplayName = Bicycle Helmet,
ClothingItem = Hat_BicycleHelmet,
BodyLocation = Hat,
Icon = HelmetBicycleWhite,
CanHaveHoles = false,
ChanceToFall = 0,
        Insulation = 0.25,
        WindResistance = 0.15,
        BloodLocation = Head,
}
}}
}}
 
==See also==


{{Navbox clothing}}
{{Navbox items|headwear}}

Latest revision as of 15:10, 25 April 2024

Project ZomboidItemsClothingHeadwearHelmetsHockey 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.
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Hockey Helmet
HelmetHockey Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Technical
Item ID
Base.Hat_HockeyHelmet

A hockey helmet is a helmet used by hockey players.

Usage

The hockey helmet provides bite and scratch defense.

Body location

Protection Hat.png
  • Head

Distribution

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

Hat_HockeyHelmet distribution Show / Hide
Containers
Building / Room Container Rolls Chance
SafehouseLoot crate 4 2.0
bedroom crate 1 0.2
closet crate 4 2.0
schoolstorage crate 4 20.0
schoolstorage crate 4 10.0

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_BicycleHelmet
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Bicycle Helmet,
		ClothingItem = Hat_BicycleHelmet,
		BodyLocation = Hat,
		Icon = HelmetBicycleWhite,
		CanHaveHoles = false,
		ChanceToFall = 0,
        Insulation = 0.25,
        WindResistance = 0.15,
        BloodLocation = Head,
	}

See also