Beret: Difference between revisions

From PZwiki
m (Added 3d Model and removed reupload tag)
m (Automated infobox update)
Line 2: Line 2:
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Reupload|Missing 3D models}}
{{Reupload|Missing 3D models}}
{{Infobox clothing
{{Infobox item
| display_name=Beret
| name=Beret
| name_colour=Clothing
| name_colour=Clothing
| name_text_colour=Clothing
| name_text_colour=Clothing
| image=BeretGreen_Model.png
| model=BeretGreen_Model.png
| image_width=128px
| image_width=128px
| alternate_image=BeretGrey.png
| icon=BeretGrey.png
| alternate_image2=BeretGreen.png
| icon2=BeretGreen.png
| alternate_image3=HatBeretArmy.png
| icon3=HatBeretArmy.png
<!-- General -->
<!-- General -->
| category=Clothing
| category=Clothing
| weight=''See [[#Variants|Variants]]''
| weight=''See [[#Variants|Variants]]''
| body_location=Hat
| equipped=Hat
<!-- Speed -->
<!-- Protection -->
<!-- Insulation -->
| insulation=''See [[#Variants|Variants]]''
| insulation=''See [[#Variants|Variants]]''
| wind_resistance=''See [[#Variants|Variants]]''
| wind_resistance=''See [[#Variants|Variants]]''
<!-- Technical details -->
<!-- Technical details -->
| class_name=''See [[#Variants|Variants]]''
| item_id=''See [[#Variants|Variants]]''
| no_style=
}}
}}
A '''beret''' is a hat with no protection and low insulation.
A '''beret''' is a hat with no protection and low insulation.

Revision as of 12:11, 15 February 2024

Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Beret
BeretGreen Model.png
Beret
Beret
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
Equipped
Hat
Properties
Insulation
Wind resistance
Technical
Item ID

A beret is a hat with no protection and low insulation.

Body location

Protection Hat.png
  • Head

Variants

There are three variants of the beret.

Icon Name Encumbrance Insulation Wind resistance Base ID
BeretGrey.png Beret 0.5 30% - Base.Hat_Beret
BeretGreen.png Army Beret 0.5 30% - Base.Hat_BeretArmy

Trivia

  • The beret was created as a French fashion clothing item but was also adopted by the US Army. By 1979, berets in the military were restricted to being worn by special forces and ranger units.

Code

Beret Beret

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_Beret
{
  DisplayCategory       = Accessory,
  Type                  = Clothing,
  DisplayName           = Beret,
  ClothingItem          = Hat_Beret,
  BodyLocation          = Hat,
  Icon                  = BeretGrey,
  CanHaveHoles          = false,
  ChanceToFall          = 60,
  Insulation            = 0.3,
  BloodLocation         = Head,
  Weight                = 0.5,
}

Army Beret Army Beret

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_BeretArmy
{
  DisplayCategory       = Accessory,
  Type                  = Clothing,
  DisplayName           = Army Beret,
  ClothingItem          = Hat_BeretArmy,
  BodyLocation          = Hat,
  Icon                  = BeretGreen,
  CanHaveHoles          = false,
  ChanceToFall          = 60,
  Insulation            = 0.3,
  BloodLocation         = Head,
  Weight                = 0.5,
}