Open Balaclava: Difference between revisions

From PZwiki
No edit summary
m (Distribution table update)
(30 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Masks}}
{{languages}}
{{Page version|41.65}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Open Balaclava
| display_name = Open Balaclava
|model=BalaclavaOpen_Model.png
| name_colour = Clothing
|icon=BalaclavaOpen.png
| name_text_colour = Clothing
|icon_name=Open Balaclava
| image_width = 300px
| alternate_image = BalaclavaOpen.png
| alternate_name = Open Balaclava
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 0.01
|weight=1.0
| body_location = Mask
|equipped=Mask
<!-- Protection -->
|insulation=0.8
| insulation = 0.8
|wind_resistance=0.8
<!-- Technical details -->
<!-- Technical details -->
| class_name = Hat_BalaclavaFace
|item_id=Base.Hat_BalaclavaFace
}}
}}
The '''Balaclava''' is a face mask.
An '''open balaclava''' is a mask that is the full face variant of the [[balaclava]].
 
==Usage==
Open balaclavas provide a great amount of insulation and wind resistance, which make them great attire for cold days.
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Hat_BalaclavaFace|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Hat_BalaclavaFace distribution
        <span class="mw-customtoggle-togglebox-Hat_BalaclavaFace" 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_BalaclavaFace">
    <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
    |-
    | all
    | {{ll|militarycrate}}
    | 4
    | 8.0
    |-
    | armysurplus
    | {{ll|counter}}
    | 4
    | 4.0
    |-
    | armysurplus
    | {{ll|metal_shelves}}
    | 4
    | 8.0
    |-
    | closet
    | {{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
    |-
    | ClothingTruckBed
    | 4
    | 0.8
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Hat_BalaclavaFace" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Hat_BalaclavaFace|41.78.16-->
Open balaclavas can be found on private militia [[zombie]]s and in military related containers.
 
==Body location==
==Body location==
{{Body location|body_location=Hat}}
{{Body location|body_location=Hat}}
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 19
  | source = clothing_hats.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Hat_BalaclavaFace
{
    DisplayCategory = Accessory,
Type = Clothing,
DisplayName = Open Balaclava,
ClothingItem = Hat_BalaclavaFace,
BodyLocation = Mask,
Icon = BalaclavaOpen,
CanHaveHoles = false,
BloodLocation = Head,
Insulation = 0.8,
WindResistance = 0.8,
WorldStaticModel = BalaclavaFace_Ground,
}
}}
}}
==See also==
*{{ll|Balaclava}}
{{Navbox items|headwear}}

Revision as of 16:11, 24 April 2024

Project ZomboidItemsClothingHeadwearMasksOpen Balaclava
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.
Open Balaclava
BalaclavaOpen Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Mask
Properties
Insulation
80%
Wind resistance
80%
Technical
Item ID
Base.Hat_BalaclavaFace

An open balaclava is a mask that is the full face variant of the balaclava.

Usage

Open balaclavas provide a great amount of insulation and wind resistance, which make them great attire for cold days.

Distribution

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

Hat_BalaclavaFace distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all militarycrate 4 8.0
armysurplus counter 4 4.0
armysurplus metal_shelves 4 8.0
closet crate 4 2.0
Vehicles
Vehicle Type/Location Rolls Chance
ClothingTruckBed 4 0.8

Open balaclavas can be found on private militia zombies and in military related containers.

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_BalaclavaFace
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Open Balaclava,
		ClothingItem = Hat_BalaclavaFace,
		BodyLocation = Mask,
		Icon = BalaclavaOpen,
		CanHaveHoles = false,
		BloodLocation = Head,
		Insulation = 0.8,
		WindResistance = 0.8,
		WorldStaticModel = BalaclavaFace_Ground,
	}

See also