Air Force Helmet: Difference between revisions

From PZwiki
(Added 3d Model and removed reupload tag)
m (Remove lines))
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Helmets}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Page version|41.65}}
{{Infobox clothing
{{Infobox item
| display_name=Air Force Helmet
|name=Air Force Helmet
| name_colour=Clothing
|model=HelmetSP_Model.png
| name_text_colour=Clothing
|icon=HelmetSP.png
| image=HelmetSP_Model.png
| alternate_image=HelmetSP.png
<!-- General -->
<!-- General -->
| category=Clothing
|category=Clothing
| weight=1.0
|weight=1.0
| body_location=FullHat
|equipped=FullHat
<!-- Speed -->
|combat_speed=0.95
| combat_speed = 0.95
|bite_defense=100
<!-- Protection -->
|scratch_defense=100
| bite_defense = 100
|insulation=0.70
| scratch_defense = 100
|wind_resistance=0.70
<!-- Insulation -->
|water_resistance=1.0
| insulation=0.70
| wind_resistance=0.70
| water_resistance=1.0
<!-- Technical details -->
<!-- Technical details -->
| class_name=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 27: Line 22:
==Usage==
==Usage==
An air force helmet can be used to protect the wearer from attacks to the head.
An air force helmet can be used to protect the wearer from attacks to the head.
==Body location==
{{Body location|body_location=Hat}}


==Distribution==
==Distribution==
Air force helmets can be found in army bases and on certain [[zombie]]s.
The loot distributions can be found in the table(s) below.


==Body location==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
{{Body location|body_location=Hat}}
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|armyhanger
|[[locker]]
|4
|4
|}


==Code==
==Code==
Line 39: 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
   | version = 41.78.16
  | incver = 65
   | 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}}
==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