Bucket Hat: Difference between revisions

From PZwiki
m (Updated distribution table)
m (Automatic formatting)
(One intermediate revision by the same user not shown)
Line 2: Line 2:
{{Page version|41.65}}
{{Page version|41.65}}
{{Infobox item
{{Infobox item
| name=Bucket Hat
|name=Bucket Hat
| name_colour=Clothing
|name_colour=Clothing
| name_text_colour=Clothing
|name_text_colour=Clothing
| model=Buckethat_Model.png
|model=Buckethat_Model.png
| icon=BobHat.png
|icon=BobHat.png
<!-- General -->
<!-- General -->
| category=Clothing
|category=Clothing
| weight=1.0
|weight=1.0
| equipped=Hat
|equipped=Hat
| insulation=0.5
|insulation=0.5
| wind_resistance=0.3
|wind_resistance=0.3
<!-- Technical details -->
<!-- Technical details -->
| item_id=Base.Hat_BucketHat
|item_id=Base.Hat_BucketHat
}}
}}


Line 87: 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.65
   | version = 41.78.16
   | 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|headwear}}
{{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,
    }