Medical Mask: Difference between revisions

From PZwiki
m (200px)
(→‎Code: code box update)
Line 25: Line 25:


==Code==
==Code==
'''''From clothing_hats.txt (Project Zomboid directory/media/scripts/clothing)'''''<br>
[[File:SurgicalMaskBlue.png|Medical Mask (Blue)]] ''Medical Mask (Blue)''
[[File:SurgicalMaskBlue.png|Medical Mask (Blue)]] ''Medical Mask (Blue)''
{{Retrieved|version=41|incver=65}}
{{CodeBox
<pre> item Hat_SurgicalMask_Blue
| {{CodeSnip
DisplayCategory = Accessory,
  | lang = java
Type = Clothing,
  | line = true
DisplayName = Medical Mask,
  | start = 0
ClothingItem = Hat_SurgicalMask_Blue,
  | source = clothing_hats.txt
BodyLocation = Mask,
  | retrieved = true
Icon = SurgicalMaskBlue,
  | version = 41
CanHaveHoles = false,
  | incver = 65
Weight = 0.2,
  | code =
</pre>
item Hat_SurgicalMask_Blue
{
  DisplayCategory   = Accessory,
  Type             = Clothing,
  DisplayName       = Medical Mask,
  ClothingItem     = Hat_SurgicalMask_Blue,
  BodyLocation     = Mask,
  Icon             = SurgicalMaskBlue,
  CanHaveHoles     = false,
  Weight           = 0.2,
}
  }}
}}
 
[[File:SurgicalMaskGreen.png|Medical Mask (Green)]] ''Medical Mask (Green)''
[[File:SurgicalMaskGreen.png|Medical Mask (Green)]] ''Medical Mask (Green)''
{{Retrieved|version=41|incver=65}}
{{CodeBox
<pre> item Hat_SurgicalMask_Green
| {{CodeSnip
DisplayCategory = Accessory,
  | lang = java
Type = Clothing,
  | line = true
DisplayName = Medical Mask,
  | start = 0
ClothingItem = Hat_SurgicalMask_Green,
  | source = clothing_hats.txt
BodyLocation = Mask,
  | retrieved = true
Icon = SurgicalMaskGreen,
  | version = 41
CanHaveHoles = false,
  | incver = 65
Weight = 0.2,
  | code =
</pre>
item Hat_SurgicalMask_Green
{
  DisplayCategory   = Accessory,
  Type             = Clothing,
  DisplayName       = Medical Mask,
  ClothingItem     = Hat_SurgicalMask_Green,
  BodyLocation     = Mask,
  Icon             = SurgicalMaskGreen,
  CanHaveHoles     = false,
  Weight           = 0.2,
}
  }}
}}


==Trivia==  
==Trivia==  

Revision as of 11:11, 8 January 2024

The Game WorldItemsClothingMedical Mask
Medical Mask
Blue Medical Mask Green Medical Mask
General
Category Clothing
Encumbrance
Heavy Load
0.2
Body location Mask
Technical details
Item ID Base.Hat_SurgicalMask_Blue
Base.Hat_SurgicalMask_Green

A Medical Mask is a face mask that covers the mouth and nose. It has 2 variants: green and blue.

Distribution

Medical masks can be found at clinics and on nurse zombies.

Body location

Protection Hat.png
  • Head

Code

Medical Mask (Blue) Medical Mask (Blue)

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.65
item Hat_SurgicalMask_Blue
{
  DisplayCategory   = Accessory,
  Type              = Clothing,
  DisplayName       = Medical Mask,
  ClothingItem      = Hat_SurgicalMask_Blue,
  BodyLocation      = Mask,
  Icon              = SurgicalMaskBlue,
  CanHaveHoles      = false,
  Weight            = 0.2,
}

Medical Mask (Green) Medical Mask (Green)

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.65
item Hat_SurgicalMask_Green
{
  DisplayCategory   = Accessory,
  Type              = Clothing,
  DisplayName       = Medical Mask,
  ClothingItem      = Hat_SurgicalMask_Green,
  BodyLocation      = Mask,
  Icon              = SurgicalMaskGreen,
  CanHaveHoles      = false,
  Weight            = 0.2,
}

Trivia

  • Medical masks are an essential tool of the trade for dentists and surgeons.