Bucket: Difference between revisions

From PZwiki
(Different model still seems to be used, so bringing back the gallery)
Tag: Undo
m (→‎Gallery: period)
Line 188: Line 188:
==Gallery==
==Gallery==
<gallery>
<gallery>
Bucket_Model.png|Model used for animations
Bucket_Model.png|Model used for animations.
</gallery>
</gallery>



Revision as of 23:30, 27 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Bucket
Bucket Empty Model.png
Bucket Water Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
1 (empty)
4 (full)
Function
Cooking utensil
Properties
Contents
Water
Capacity
25 units
Can boil water
True
Rain factor
1
Technical
Item ID
Base.BucketEmpty
Base.BucketWaterFull
Can be used to collect rainwater when placed on the ground outside
— In-game tooltip

A bucket is a water container required in carpentry.

Usage

Water

The bucket can be used to carry up to 25 units of water. To fill a bucket with water, simply right-click the water source and select "Fill Bucket", consuming the bucket and producing a bucket of water. If the source is considered unclean, the water in the bucket will be tainted and displayed with a green skull icon (SkullPoison.png). Leaving the bucket on the ground outside while it is raining, will gradually fill it with tainted water.

Plaster

The bucket can be used with water and plaster powder to produce a bucket of plaster, which can be applied to a built wall, allowing it to be painted. A bucket of plaster can be filled with water, which will remove the plaster.

Recipes

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
MetalBucket Plaster.png
Bucket of Plaster
0 XP none
(consumed)
WaterDrop.png
Water
(5 units)

(keep)
Plaster Powder.png
Bag of Plaster Powder
(consumed)

Distribution

Buckets are relatively rare as they can only be found in garden and storage areas at low frequency.

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

Containers
Building/Room Container Rolls Chance
bedroom crate 1 1
classroom counter 4 1
closet crate 4 4
crate 4 2
daycare counter 4 1
farmstorage crate 4 2
gardenstore metal_shelves 4 2
gasstorage counter 4 1
generalstore metal_shelves 4 2
laundry counter 4 1
mechanic wardrobe 4 1
toolstorestorage metal_shelves 4 2

Vehicles

Profession Container Rolls Chance
Construction Worker Trunk 5 1

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

MetalBucket.png Base.BucketEmpty
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item BucketEmpty
	{
	    DisplayCategory = WaterContainer,
		Weight	=	1,
		CanStoreWater	=	TRUE,
		Type	=	Normal,
		DisplayName	=	Bucket,
		Icon	=	MetalBucket,
        ReplaceOnUseOn = WaterSource-BucketWaterFull,
        MetalValue = 20,
        RainFactor = 1,
		Tooltip = Tooltip_item_RainFromGround,
        EatType = Bucket,
        SurvivalGear = TRUE,
        WorldStaticModel = Bucket_Ground,
	}

MetalBucket Water.png Base.BucketWaterFull
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item BucketWaterFull
	{
	    DisplayCategory = Water,
		IsWaterSource	=	TRUE,
		Weight	=	4,
		CanStoreWater	=	TRUE,
		FillFromDispenserSound = GetWaterFromDispenserMetalBig,
		FillFromTapSound = GetWaterFromTapMetalBig,
		Type	=	Drainable,
		DisplayName	=	Bucket of Water,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.04,
		ReplaceOnDeplete	=	BucketEmpty,
		ReplaceOnUseOn	=	WaterSource-BucketWaterFull,
		Icon	=	MetalBucket_Water,
		RainFactor = 1,
		Tooltip = Tooltip_item_RainFromGround,
		StaticModel = Bucket,
		EatType = Bucket,
		WorldStaticModel = BucketFullWater_Ground,
		IsCookable = TRUE,
		Tags = HasMetal,
	}

Gallery

Trivia

In build 41.78 the bucket had its icon changed, to reflect that it's made of metal, previously it used to have a blue icon: Bucket Empty.pngBucket Water.png.

See also