Bucket Hat: Difference between revisions

From PZwiki
(Automated update of distribution section)
m (Automatic formatting)
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Clothing|Headwear|Hats}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Page version|41.65}}
{{Infobox clothing
{{Infobox item
| display_name=Bucket Hat
|name=Bucket Hat
| name_colour=Clothing
|name_colour=Clothing
| name_text_colour=Clothing
|name_text_colour=Clothing
| image=Buckethat_Model.png
|model=Buckethat_Model.png
| alternate_image=BobHat.png
|icon=BobHat.png
<!-- General -->
<!-- General -->
| category=Clothing
|category=Clothing
| weight=1.0
|weight=1.0
| body_location=Hat
|equipped=Hat
<!-- Insulation -->
|insulation=0.5
| insulation=0.5
|wind_resistance=0.3
| wind_resistance=0.3
<!-- Technical details -->
<!-- Technical details -->
| class_name=Base.Hat_BucketHat
|item_id=Base.Hat_BucketHat
}}
}}
A '''nucket hat''' is a hat that provides no protection but moderate insulation.
A '''nucket hat''' is a hat that provides no protection but moderate insulation.


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 26: Line 25:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="3"|all  
|rowspan="3"|all  
| [[locker]]  
|[[locker]]  
| 4  
|4  
| 0.1
|0.1
|-
|-
|[[wardrobe]]
|[[wardrobe]]  
|4
|4  
|0.1
|0.1
|-
|-
|[[wardrobe]]
|[[wardrobe]]  
|4
|4  
|0.1
|0.1
|-
|-
| bathroom  
|bathroom  
| [[locker]]  
|[[locker]]  
| 4  
|4  
| 0.1
|0.1
|-
|-
| bedroom  
|bedroom  
| [[wardrobe]]  
|[[wardrobe]]  
| 4  
|4  
| 0.1
|0.1
|-
|-
| closet  
|closet  
| [[metal_shelves]]  
|[[metal_shelves]]  
| 4  
|4  
| 0.1
|0.1
|-
|-
| clothingstorage  
|clothingstorage  
| [[crate]]  
|[[crate]]  
| 4  
|4  
| 6
|6
|-
|-
| rowspan="2"|clothingstore  
|rowspan="2"|clothingstore  
| [[counter]]  
|[[counter]]  
| 4  
|4  
| 6
|6
|-
|-
|[[counter]]
|[[counter]]  
|4
|4  
|6
|6
|-
|-
| hall  
|hall  
| [[locker]]  
|[[locker]]  
| 4  
|4  
| 0.1
|0.1
|}
|}
Bucket hats can be found in clothing stores, lockers, and wardrobes. They can also be found on tourist [[zombie]]s.
Bucket hats can be found in clothing stores, lockers, and wardrobes. They can also be found on tourist [[zombie]]s.
Line 88: Line 87:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 1107
   | source = clothing_hats.txt
   | source = clothing_hats.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 65
   | code =
   | code =
item Hat_BucketHat
item Hat_BucketHat
{
    {
  DisplayCategory     = Accessory,
        DisplayCategory = Accessory,
  Type                 = Clothing,
        Type = Clothing,
  DisplayName         = Bucket Hat,
        DisplayName = Bucket Hat,
  ClothingItem         = Hat_BucketHat,
        ClothingItem = Hat_BucketHat,
  BodyLocation         = Hat,
        BodyLocation = Hat,
  Icon                 = BobHat,
        Icon = BobHat,
  CanHaveHoles         = false,
        CanHaveHoles = false,
  ChanceToFall         = 60,
        ChanceToFall = 60,
  BloodLocation       = Head,
        BloodLocation = Head,
  Insulation           = 0.5,
        Insulation = 0.5,
  WindResistance       = 0.3,
        WindResistance = 0.3,
}
    }  
  }}
}}
}}
}}


{{Navbox clothing}}
{{Navbox clothing|headwear}}

Revision as of 15:18, 25 March 2024

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.
Bucket Hat
Buckethat Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Properties
Insulation
50%
Wind resistance
30%
Technical
Item ID
Base.Hat_BucketHat

A nucket hat is a hat that provides no protection but moderate insulation.

Distribution

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

Containers
Building/Room Container Rolls Chance
all locker 4 0.1
wardrobe 4 0.1
wardrobe 4 0.1
bathroom locker 4 0.1
bedroom wardrobe 4 0.1
closet metal_shelves 4 0.1
clothingstorage crate 4 6
clothingstore counter 4 6
counter 4 6
hall locker 4 0.1

Bucket hats can be found in clothing stores, lockers, and wardrobes. They can also be found on tourist zombies.

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_BucketHat
    {
        DisplayCategory = Accessory,
        Type = Clothing,
        DisplayName = Bucket Hat,
        ClothingItem = Hat_BucketHat,
        BodyLocation = Hat,
        Icon = BobHat,
        CanHaveHoles = false,
        ChanceToFall = 60,
        BloodLocation = Head,
        Insulation = 0.5,
        WindResistance = 0.3,
    }