Riot 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 = Riot Helmet...")
 
(Add code)
 
(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.78.16}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Riot Helmet
| display_name = Riot Helmet
|model=RiotHelmet.png
| name_colour = Clothing
|icon=HelmetRiot.png
| name_text_colour = Clothing
|icon_name=Riot Helmet
| image = RiotHelmet.png
| image_width = 300px
| alternate_image = HelmetRiot.png
| alternate_name = Riot Helmet
 
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = Hat
|equipped=Hat
<!-- Speed -->
|combat_speed=0.95
| combat_speed = 0.95
|scratch_defense=100
<!-- Protection -->
|bite_defense=100
| scratch_defense = 100
|insulation=0.45
| bite_defense = 100
|wind_resistance=0.65
 
|water_resistance=1.0
<!-- Technical details -->
<!-- Technical details -->
| class_name = Hat_RiotHelmet
|item_id=Base.Hat_RiotHelmet
}}
}}
A '''riot helmet''' is a riot helmet used by the various Kentucky police departments.
==Usage==
The Riot Helmet completely protects the wearer's head from scratches and bites. The helmet provides a moderate amount of insulation, wind resistance and maximum water resistance.


The '''Riot Helmet''' is a police riot helmet used by the various Kentucky Police departments.
The Riot Helmet cannot be knocked off the wearer's head when they're attacked.
 
===Distribution===
May be found most frequently on police roadblocks throughout Kentucky.


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


==Gallery==
<gallery>
HighResRiotHelmet.jpg|Riot Helmet displayed on a player
</gallery>
==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 877
  | source = clothing_hats.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Hat_RiotHelmet
{
    DisplayCategory = Accessory,
Type = Clothing,
DisplayName = Riot Helmet,
ClothingItem = Hat_RiotHelmet,
BodyLocation = FullHat,
Icon = HelmetRiot,
BloodLocation = FullHelmet,
CanHaveHoles = false,
CombatSpeedModifier = 0.95,
BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.45,
        WindResistance = 0.65,
        WaterResistance = 1.0,
}
}}
}}


==See also==


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

Latest revision as of 10:25, 2 May 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Riot Helmet
RiotHelmet.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Properties
Combat speed
95%
Scratch defence
100%
Bite defence
100%
Insulation
45%
Wind resistance
65%
Water resistance
100%
Technical
Item ID
Base.Hat_RiotHelmet

A riot helmet is a riot helmet used by the various Kentucky police departments.

Usage

The Riot Helmet completely protects the wearer's head from scratches and bites. The helmet provides a moderate amount of insulation, wind resistance and maximum water resistance.

The Riot Helmet cannot be knocked off the wearer's head when they're attacked.

Distribution

May be found most frequently on police roadblocks throughout Kentucky.

Body location

Protection FullHat.png
  • Head

Gallery

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_RiotHelmet
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Riot Helmet,
		ClothingItem = Hat_RiotHelmet,
		BodyLocation = FullHat,
		Icon = HelmetRiot,
		BloodLocation = FullHelmet,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.45,
        WindResistance = 0.65,
        WaterResistance = 1.0,
	}

See also