Bucket of Plaster: Difference between revisions

From PZwiki
m (lan)
m (Automated Formatting)
(41 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{languages|Bucket with Plaster}}
{{Header|Project Zomboid|Items|Materials}}
{{Items
{{Page version|41.78.16}}
|image = Bucket with plaster.png|120px
{{Infobox item
|weight = 10
|name=Bucket of Plaster
|model=BucketPlasterFull_Model.png
|icon=MetalBucket_Plaster.png
|icon_name=Bucket of plaster
|category=Material
|weight=10
|max_units=0.1
|contents=Plaster
|function=Decorative
|item_id=Base.BucketPlasterFull
}}
}}
A '''bucket of plaster''' is a drainable item that can be used for decorative purposes.


Made with water and a bag of plaster powder, it can be used to plaster up to four walls at Carpentry Level 4 .<br>
==Usage==
Plastered walls can then be painted using a [[Paint Brush]] and some [[Paint]].
A bucket of plaster can be used to plaster up to four Level 3 [[Wooden Wall|walls]] at [[carpentry]] Level 4.


== Crafting ==
Plastered walls can then be painted using a [[paintbrush]] and some [[paint]].
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
{{RecipeLookup|4014}}
|}


== Code ==
Plastering and painting is for '''decoration''' only and '''will not''' make walls indestructible by [[zombie]]s.
<nowiki>item BucketPlasterFull
{
IsWaterSource = TRUE,
Weight = 10,
CanStoreWater = TRUE,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.25,
DisplayName = Bucket with plaster,
ReplaceOnDeplete = BucketEmpty,
ReplaceOnUseOn = WaterSource-BucketWaterFull,
Icon = Plaster_Mixed,
}</nowiki>


==See Also==
Plastering door frames is very finicky and will not always work. Some furniture can block the plastering of walls.
* [[Bucket]]


[[Category:items]]
==Crafting==
The '''bucket of plaster''' is made with [[water]] and a [[Bag of Plaster Powder|bag of plaster powder]].
{{Crafting/sandbox2
|bucket_of_plaster
}}
 
==Trivia==
*In [[Build 41#Build 41.78|build 41.78]] the bucket had its icon changed, to reflect that it's made of metal, previously it used to have a blue model and icon: [[File:Plaster_Mixed.png]].
 
==Gallery==
<gallery style="image-rendering:optimizeSpeed;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:optimize-contrast;image-rendering:pixelated;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor">
BucketPlasterFull_Model-old.png|Original blue bucket model of plaster.
Plaster_Mixed.png|Original blue bucket icon of plaster.
</gallery>
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 688
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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==
*[[Bucket]]
*[[Bag of Plaster Powder]]
{{Navbox items|carpentry|materials}}
 
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Carpentry materials]]

Revision as of 06:54, 14 April 2024

Project ZomboidItemsMaterialsBucket of Plaster
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Bucket of Plaster
BucketPlasterFull Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
10
Function
Decorative
Properties
Contents
Plaster
Capacity
10 units
Technical
Item ID
Base.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 paintbrush and some paint.

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

Plastering door frames is very finicky and will not always work. Some furniture can block the plastering of walls.

Crafting

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

Product Ingredients Tools Requirements Workstation XP
MetalBucket Plaster.png
Bucket of Plaster
One of:
MetalBucket.png Bucket ×1
MetalBucket Water.png Bucket ×1
Each of:
WaterDrop.png Water ×5 unit(s)
Plaster Powder.png Bag of Plaster Powder ×1
none none none none

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 model and icon: Plaster Mixed.png.

Gallery

Code

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

Source: ProjectZomboid\media\scripts\items.txt

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