Bucket: Difference between revisions

From PZwiki
No edit summary
(added model to infobox)
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{languages}}
{{languages|Bucket}}
{{Tools
{{header|The Game World|Items|Tools|type=Tool|version=Version 40|incver=11}}{{Infobox drainable
|image = Empty bucket.png  
|display_name=Bucket
|primaryuse = Making plaster
|name_colour=Tool
|otheruses = Carrying water
|name_text_colour=Tool
|weight = 1}}
|image=Bucket_Model.png
|image_width=300px
|alternate_image=Bucket_Empty.png
|alternate_name=Bucket
|alternate_link=
|alternate_image2=Bucket_Water.png
|alternate_name2=Bucket of Water
|alternate_link2=
|weight='''Empty:''' 1<br>'''Full:''' 4
|function=[[Cooking]] utensil
|max_units=32.3
|contents=Water
|can_boil_water=False
|rain_factor=1
|class_name=Base.BucketEmpty<br>Base.BucketWaterFull
}}{{quote|text=Can be used to collect rainwater when placed on the ground outside|author=In-game tooltip}}


A bucket is very useful for carrying water and that water can be used to create plaster, which could be applied onto a wall so that it can be [[Paint Brush|painted]]. It can hold the equivalent of 32 [[A Mug of Water|mugs of water]].
A '''bucket''' is a [[water]] container required in [[Carpentry Guide|carpentry]].


Buckets can be placed outside in the rain to collect rain water. The water will need to be boiled before drinking in.
==Usage==
===Water===
The bucket can be used to carry up to [[Water#Containers|32.3 units of water]]. To fill a bucket with water, simply right-click the [[:Category:Water Source|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 [[Water#Tainted|tainted]] and displayed with a green skull icon ([[File:SkullPoison.png]]). Leaving the bucket on the ground outside while it is [[rain]]ing, will gradually fill it with [[Water#Tainted Water|tainted water]].


===Plaster===
The bucket can be used with water and [[Bag of Plaster Powder|plaster powder]] to produce a [[Bucket of Plaster|bucket of plaster]], which can be applied to a built [[Wooden Wall|wall]], allowing it to be [[Paint Brush|painted]]. A bucket of plaster can be filled with water, which will remove the plaster.


===Recipes===
{{Crafting table header}}
{{RecipeLookup|4013}}
{{RecipeLookup|4014}}
{{Crafting table footer}}
==Distribution==
Buckets are relatively rare as they can only be found in garden and storage areas at low frequency.
=== Buildings ===
{| class="pztable" style="text-align:center;"
|-
!Building/Room
!Container
!Rolls
!Chance
|-
|All
|[[Containers#Crates|Crate]]
|1
|2
|-
|Shed
|[[Containers#Counters|Counter]]
|1
|10
|-
|Storage Unit
|[[Containers|All]]
|3
|1
|-
|Garden store
|[[Containers#Crates|Crate]]
|3
|2
|-
|Farm Storage
|[[Containers|All]]
|3
|2
|-
|}


=== Vehicles ===
{| class="pztable" style="text-align:center;"
|-
!Profession
!Container
!Rolls
!Chance
|-
|Construction Worker
|[[Trunk]]
|5
|1
|-
|}


==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''


== Crafting ==
''Bucket'' [[File:Bucket_Empty.png]]
{| class="wikitable sortable" style="text-align:center;"
{{Retrieved|version=40|incver=11}}
|-  
<pre> item BucketEmpty
! Name
Weight = 1,
! class="unsortable" | Recipe
CanStoreWater = TRUE,
! class="unsortable" | Description
Type = Normal,
{{RecipeLookup|4013}}
DisplayName = Bucket,
{{RecipeLookup|4014}}
Icon = Bucket_Empty,
|}
      ReplaceOnUseOn = WaterSource-BucketWaterFull,
        MetalValue = 20,
        RainFactor = 1,
        Tooltip = Tooltip_item_RainFromGround,</pre>


== Code ==
''Bucket of Water'' [[File:Bucket_Water.png]]
<nowiki>item BucketEmpty
{{Retrieved|version=40|incver=11}}
{
<pre> item BucketWaterFull
Weight = 1,
IsWaterSource = TRUE,
CanStoreWater = TRUE,
Weight = 4,
Type = Normal,
CanStoreWater = TRUE,
DisplayName = Bucket,
Type = Drainable,
Icon = Bucket_Empty,
DisplayName = Bucket of Water,
        ReplaceOnUseOn = WaterSource-BucketWaterFull,
UseWhileEquipped = FALSE,
}</nowiki>
ReplaceOnDeplete = BucketEmpty,
ReplaceOnUseOn = WaterSource-BucketWaterFull,
Icon = Bucket_Water,
RainFactor = 1,
Tooltip = Tooltip_item_RainFromGround,</pre>


==See Also==
==See also==
* [[Paint Brush]]
* [[Paint Brush]]
* [[Paint]]
* [[Paint]]


{{Navbox/Tools}}
{{Navbox/Tools}}
[[Category:Tools]]
[[Category:Construction]]
[[Category:Construction]]
[[Category:items]]

Revision as of 03:31, 13 January 2020

Bucket
Bucket
Bucket Bucket of Water
General
Category Item
Encumbrance
Heavy Load
Empty: 1
Full: 4
Function Cooking utensil
Capacity 32.3 units
Contents Water
Can boil water False
Rain factor 1
Technical details
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 32.3 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

Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

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

Buildings

Building/Room Container Rolls Chance
All Crate 1 2
Shed Counter 1 10
Storage Unit All 3 1
Garden store Crate 3 2
Farm Storage All 3 2

Vehicles

Profession Container Rolls Chance
Construction Worker Trunk 5 1

Code

From items.txt (Project Zomboid directory/media/scripts/)

Bucket Bucket Empty.png Retrieved: Build 40.11

	item BucketEmpty
		Weight		= 1,
		CanStoreWater	= TRUE,
		Type		= Normal,
		DisplayName	= Bucket,
		Icon		= Bucket_Empty,
       		ReplaceOnUseOn 	= WaterSource-BucketWaterFull,
        	MetalValue 	= 20,
        	RainFactor 	= 1,
        	Tooltip 	= Tooltip_item_RainFromGround,

Bucket of Water Bucket Water.png Retrieved: Build 40.11

	item BucketWaterFull
		IsWaterSource		= TRUE,
		Weight			= 4,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		DisplayName		= Bucket of Water,
		UseWhileEquipped	= FALSE,
		ReplaceOnDeplete	= BucketEmpty,
		ReplaceOnUseOn		= WaterSource-BucketWaterFull,
		Icon			= Bucket_Water,
		RainFactor 		= 1,
		Tooltip 		= Tooltip_item_RainFromGround,

See also

Template:Navbox/Tools