Air Force Helmet: Difference between revisions

From PZwiki
m (Automated navbox update)
m (Remove lines))
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{page version|41.65}}
{{Page version|41.65}}
{{Infobox item
{{Infobox item
| name=Air Force Helmet
|name=Air Force Helmet
| name_colour=Clothing
|model=HelmetSP_Model.png
| name_text_colour=Clothing
|icon=HelmetSP.png
| model=HelmetSP_Model.png
| icon=HelmetSP.png
<!-- General -->
<!-- General -->
| category=Clothing
|category=Clothing
| weight=1.0
|weight=1.0
| equipped=FullHat
|equipped=FullHat
| combat_speed = 0.95
|combat_speed=0.95
| bite_defense = 100
|bite_defense=100
| scratch_defense = 100
|scratch_defense=100
| insulation=0.70
|insulation=0.70
| wind_resistance=0.70
|wind_resistance=0.70
| water_resistance=1.0
|water_resistance=1.0
<!-- Technical details -->
<!-- Technical details -->
| item_id=Base.Hat_SPHhelmet
|item_id=Base.Hat_SPHhelmet
}}
}}
An '''air force helmet''' is a hat that provides moderate insulation and great protection.
An '''air force helmet''' is a hat that provides moderate insulation and great protection.


Line 28: Line 25:
==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.
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|armyhanger
|[[locker]]
|4
|4
|}


==Code==
==Code==
Line 34: Line 48:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 937
   | source = clothing_hats.txt
   | source = clothing_hats.txt
   | retrieved = true
   | retrieved = true
   | version = 41.65
   | version = 41.78.16
   | code =
   | code =
item Hat_SPHhelmet
item Hat_SPHhelmet
{
{
  DisplayCategory         = Accessory,
    DisplayCategory = Accessory,
  Type                   = Clothing,
Type = Clothing,
  DisplayName             = Airforce Helmet,
DisplayName = Airforce Helmet,
  ClothingItem           = Hat_SPHhelmet,
ClothingItem = Hat_SPHhelmet,
  BodyLocation           = FullHat,
BodyLocation = FullHat,
  BloodLocation           = FullHelmet,
BloodLocation = FullHelmet,
  Icon                   = HelmetSP,
Icon = HelmetSP,
  CanHaveHoles           = false,
CanHaveHoles = false,
  CombatSpeedModifier     = 0.95,
CombatSpeedModifier = 0.95,
  BiteDefense             = 100,
BiteDefense = 100,
  ScratchDefense         = 100,
        ScratchDefense = 100,
  ChanceToFall           = 0,
        ChanceToFall = 0,
  Insulation             = 0.70,
        Insulation = 0.70,
  WindResistance         = 0.70,
        WindResistance = 0.70,
  WaterResistance         = 1.0,
        WaterResistance = 1.0,
}
}
  }}
}}
}}
}}


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

Revision as of 06:23, 15 April 2024

Project ZomboidItemsClothingHeadwearHelmetsAir Force 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.
Air Force Helmet
HelmetSP Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
FullHat
Properties
Combat speed
95%
Scratch defence
100%
Bite defence
100%
Insulation
70%
Wind resistance
70%
Water resistance
100%
Technical
Item ID
Base.Hat_SPHhelmet

An air force helmet is a hat that provides moderate insulation and great protection.

Usage

An air force helmet can be used to protect the wearer from attacks to the head.

Body location

Protection Hat.png
  • Head

Distribution

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

Containers
Building/Room Container Rolls Chance
armyhanger locker 4 4

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_SPHhelmet
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Airforce Helmet,
		ClothingItem = Hat_SPHhelmet,
		BodyLocation = FullHat,
		BloodLocation = FullHelmet,
		Icon = HelmetSP,
		CanHaveHoles = false,
		CombatSpeedModifier = 0.95,
		BiteDefense = 100,
        ScratchDefense = 100,
        ChanceToFall = 0,
        Insulation = 0.70,
        WindResistance = 0.70,
        WaterResistance = 1.0,
	}

See also