Nuclear Biochemical Mask: Difference between revisions

From PZwiki
m (Automated Formatting)
(article overhaul)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Clothing|Headwear|Masks}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Masks}}
{{Page version|41.65}}
{{Page version|41.78.16}}
{{Stub}}
{{Infobox item
{{Infobox item
|name=Nuclear Biochemical Mask
|name=Nuclear Biochemical Mask
Line 11: Line 10:
|weight=1.0
|weight=1.0
|equipped=Hat
|equipped=Hat
|scratch_defense=100
|bite_defense=100
|insulation=0.50
|insulation=0.50
|wind_resistance=0.65
|wind_resistance=0.65
Line 17: Line 18:
|item_id=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==
Line 41: Line 49:
|0.1
|0.1
|}
|}
===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==
==See also==
*[[Hazmat Suit]]
{{Navbox items|headwear}}
{{Navbox items|headwear}}

Revision as of 01:15, 17 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.

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