Nuclear Biochemical Mask: Difference between revisions

From PZwiki
m (→‎top: category project: "The Game World")
m (Distribution table update)
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Masks}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Page version|41.78.16}}
{{Infobox clothing
{{Infobox item
| display_name = Nuclear Biochemical Mask
|name=Nuclear Biochemical Mask
| name_colour = Clothing
|model=Hat_NBCMask_model.png
| name_text_colour = Clothing
|icon=NBCMask.png
| alternate_image = NBCMask.png
|icon_name=Nuclear Biochemical Mask
| alternate_name = Nuclear Biochemical Mask
| alternate_link =
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = Hat
|equipped=Hat
<!-- Insulation -->
|scratch_defense=100
| insulation = 0.50
|bite_defense=100
| wind_resistance = 0.65
|insulation=0.50
| water_resistance = 1.0
|wind_resistance=0.65
|water_resistance=1.0
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Hat_NBCMask
|item_id=Base.Hat_NBCMask
}}A '''Nuclear Biochemical Mask''' is a mask that can be worn by players.
}}
A '''nuclear biochemical mask''' is a mask that can be worn by players.


==Usage==
==Usage==
The Nuclear Biochemical Mask completely protects the wearer's head from scratches and bites. The helmet provides a moderate amount of insulation, wind resistance and maximum water resistance.
===Pros and cons===
{{Pros-cons
|pros1 = Provides complete protection from bites and scratches.
|pros2 = Provides substantial wind resistance and insulation.
|pros3 = Is completely waterproof.
|cons1 = Spawns rarely and is location dependent to laboratories.
|cons2 = Could induce overheating in hot weather/high exertion.  
}}


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


{{Navbox clothing}}
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Hat_NBCmask|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Hat_NBCmask distribution
        <span class="mw-customtoggle-togglebox-Hat_NBCmask" 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_NBCmask">
    <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
    |-
    | laboratory
    | {{ll|crate}}
    | 4
    | 0.1
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Hat_NBCmask" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Hat_NBCmask|41.78.16-->
 
===Buildings===
Nuclear biochemical masks can be found in testing labs.
 
===NPCs===
Nuclear biochemical masks do not naturally spawn on zombies.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 791
  | source = clothing_hats.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Hat_NBCmask
{
    DisplayCategory = Accessory,
Type = Clothing,
DisplayName = Nuclear Biochemical Mask,
ClothingItem = Hat_NBCmask,
BodyLocation = FullHat,
BloodLocation = Head,
Icon = NBCMask,
CanHaveHoles = false,
BiteDefense = 100,
        ScratchDefense = 100,
        Insulation = 0.50,
        WindResistance = 0.65,
        WaterResistance = 1.0,
        WorldStaticModel = NBC_Mask_Ground,
Tags = GasMask,
    }
}}
}}
 
==See also==
*[[Hazmat Suit]]
 
{{Navbox items|headwear}}

Revision as of 16:10, 24 April 2024

Project ZomboidItemsClothingHeadwearMasksNuclear Biochemical Mask
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Nuclear Biochemical Mask
Hat NBCMask model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Properties
Scratch defence
100%
Bite defence
100%
Insulation
50%
Wind resistance
65%
Water resistance
100%
Technical
Item ID
Base.Hat_NBCMask

A nuclear biochemical mask is a mask that can be worn by players.

Usage

Pros and cons

Pros Cons
  • Provides complete protection from bites and scratches.
  • Provides substantial wind resistance and insulation.
  • Is completely waterproof.
  • Spawns rarely and is location dependent to laboratories.
  • Could induce overheating in hot weather/high exertion.

Body location

Protection FullHat.png
  • Head

Distribution

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

Hat_NBCmask distribution Show / Hide
Containers
Building / Room Container Rolls Chance
laboratory crate 4 0.1

Buildings

Nuclear biochemical masks can be found in testing labs.

NPCs

Nuclear biochemical masks do not naturally spawn on zombies.

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_NBCmask
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Nuclear Biochemical Mask,
		ClothingItem = Hat_NBCmask,
		BodyLocation = FullHat,
		BloodLocation = Head,
		Icon = NBCMask,
		CanHaveHoles = false,
		BiteDefense = 100,
        ScratchDefense = 100,
        Insulation = 0.50,
        WindResistance = 0.65,
        WaterResistance = 1.0,
        WorldStaticModel = NBC_Mask_Ground,
		Tags = GasMask,
    }

See also