Bucket of Plaster: Difference between revisions

From PZwiki
m (→‎Crafting: file fix (A-L), replaced: File:Empty_bucket.png → File:Bucket_Empty.png)
m (Update to 41.78.16)
Line 1: Line 1:
{{languages|Bucket of Plaster}}
{{languages|Bucket of Plaster}}
{{header|The Game World|Items|type=Construction|version=Version 41|incver=65}}
{{header|The Game World|Items|type=Construction|version=Version 41|incver=78.16}}
{{Infobox drainable
{{Infobox drainable
|display_name=Bucket of Plaster
|display_name=Bucket of Plaster
|name_colour=Drainable
|name_colour=Drainable
|name_text_colour=Drainable
|name_text_colour=Drainable
|image=Plaster_Mixed.png
|image=MetalBucket_Plaster.png
|image_width=120px
|image_width=120px
|weight=10
|weight=10
Line 12: Line 12:
|contents=Plaster
|contents=Plaster
|class_name=BucketPlasterFull
|class_name=BucketPlasterFull
}}
}}A '''bucket of plaster''' is a drainable item that can be used for decorative purposes.
A '''bucket of plaster''' is a drainable item that can be used for decorative purposes.


== Usage ==
==Usage==
A bucket of plaster can be used to plaster up to four Level 3 [[Wooden_Wall|walls]] at [[Carpentry]] Level 4.
A bucket of plaster can be used to plaster up to four Level 3 [[Wooden_Wall|walls]] at [[Carpentry]] Level 4.


Line 22: Line 21:
Plastering and painting is for '''decoration''' only and '''will not''' make walls indestructible by [[Zombie|zombies]].
Plastering and painting is for '''decoration''' only and '''will not''' make walls indestructible by [[Zombie|zombies]].


== Crafting ==
==Crafting==
The '''bucket of plaster''' is made with [[water]] and a [[Bag of Plaster Powder|bag of plaster powder]].
The '''bucket of plaster''' is made with [[water]] and a [[Bag of Plaster Powder|bag of plaster powder]].
{{Crafting header|ing=3}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 4014 -->
{{Crafting header|ing=3}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 4014 -->
Line 36: Line 35:
|}
|}


 
==Code==
== Code ==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
{{Retrieved|version=41|incver=78.16}}
<pre> item BucketPlasterFull
<pre>
item BucketPlasterFull
{
{
        DisplayCategory     = Material,
    DisplayCategory = Material,
Weight             = 10,
Weight = 10,
Type             = Drainable,
Type = Drainable,
UseWhileEquipped     = FALSE,
UseWhileEquipped = FALSE,
UseDelta     = 0.25,
UseDelta = 0.1,
DisplayName     = Bucket of Plaster,
DisplayName = Bucket of Plaster,
ReplaceOnDeplete     = BucketEmpty,
ReplaceOnDeplete = BucketEmpty,
ReplaceOnUseOn     = WaterSource-BucketWaterFull,
ReplaceOnUseOn = WaterSource-BucketWaterFull,
Icon             = Plaster_Mixed,
Icon = MetalBucket_Plaster,
StaticModel         = Bucket,
StaticModel = Bucket,
EatType             = Bucket,
EatType = Bucket,
WorldStaticModel     = BucketFullPlaster_Ground,
WorldStaticModel = BucketFullPlaster_Ground,
}
}
</pre>
</pre>


==See also==
==See also==
* [[Bucket]]
*[[Bucket]]
* [[Bag_of_Plaster_Powder|Bag of Plaster Powder]]
*[[Bag of Plaster Powder]]


[[Category:Items]]
[[Category:Items]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]

Revision as of 19:55, 1 February 2023

The Game WorldItemsBucket of Plaster
Bucket of Plaster
Bucket of Plaster
General
Category Item
Encumbrance
Heavy Load
10
Function Decorative
Capacity 4.0 units
Contents Plaster
Technical details
item ID BucketPlasterFull

A bucket of plaster is a drainable item that can be used for decorative purposes.

Usage

A bucket of plaster can be used to plaster up to four Level 3 walls at Carpentry Level 4.

Plastered walls can then be painted using a paint brush and some paint.

Plastering and painting is for decoration only and will not make walls indestructible by zombies.

Crafting

The bucket of plaster is made with water and a bag of plaster powder.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Bucket with Plaster
Bucket of Plaster x1
none Bucket
Bucket x1
Water
Water (5 units)
(consumed)
Bag of Plaster Powder
Bag of Plaster Powder x1
(consumed)

Code

From items.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.78.16

	item BucketPlasterFull
	{
	    DisplayCategory = Material,
		Weight	=	10,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	Bucket of Plaster,
		ReplaceOnDeplete	=	BucketEmpty,
		ReplaceOnUseOn	=	WaterSource-BucketWaterFull,
		Icon	=	MetalBucket_Plaster,
		StaticModel = Bucket,
		EatType = Bucket,
		WorldStaticModel = BucketFullPlaster_Ground,
	}

See also