Bucket: Difference between revisions

From PZwiki
m (removing unnecessary red links)
No edit summary
Line 1: Line 1:
{{Items
{{Items
|image = Empty bucket.png  
|image = Empty bucket.png  
|weight = ?
|weight = 1, 4, or 10
}} <!--/infobox-->
}} <!--/infobox-->
A bucket. Very useful for carrying water.  
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]].


== Crafting ==
== Crafting ==
Line 18: Line 18:
|}
|}


== Code ==
<nowiki>
item BucketEmpty
{
Weight = 1,
CanStoreWater = TRUE,
Type = Normal,
DisplayName = Bucket,
Icon = Bucket_Empty,
    ReplaceOnUseOn = WaterSource-BucketWaterFull,
}
item BucketConcreteFull
{
IsWaterSource = TRUE,
Weight = 10,
CanStoreWater = TRUE,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.25,
DisplayName = Bucket with concrete,
ReplaceOnDeplete = BucketEmpty,
ReplaceOnUseOn = WaterSource-BucketWaterFull,
Icon = Concrete_Mixed,
}
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,
}
item BucketWaterFull
{
IsWaterSource = TRUE,
Weight = 4,
CanStoreWater = TRUE,
Type = Drainable,
DisplayName = Bucket with water,
ReplaceOnDeplete = BucketEmpty,
ReplaceOnUseOn = WaterSource-BucketWaterFull,
Icon = Bucket_Water,
}
</nowiki>





Revision as of 10:00, 31 July 2013

Template:Items 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 painted.

Crafting

Bucket can be used in the following recipes:

Ingredients Other Items Output Description
Bucket + Water None Bucket of water A bucket full of water.
Bucket + Water + Bag of Plaster Powder None Plaster Plaster for walls

Code

item BucketEmpty
	{
		Weight	=	1,
		CanStoreWater	=	TRUE,
		Type	=	Normal,
		DisplayName	=	Bucket,
		Icon	=	Bucket_Empty,
    ReplaceOnUseOn = WaterSource-BucketWaterFull,
	}
item BucketConcreteFull
	{
		IsWaterSource	=	TRUE,
		Weight	=	10,
		CanStoreWater	=	TRUE,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.25,
		DisplayName	=	Bucket with concrete,
		ReplaceOnDeplete	=	BucketEmpty,
		ReplaceOnUseOn	=	WaterSource-BucketWaterFull,
		Icon	=	Concrete_Mixed,
	}

	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,
	}

	item BucketWaterFull
	{
		IsWaterSource	=	TRUE,
		Weight	=	4,
		CanStoreWater	=	TRUE,
		Type	=	Drainable,
		DisplayName	=	Bucket with water,
		ReplaceOnDeplete	=	BucketEmpty,
		ReplaceOnUseOn	=	WaterSource-BucketWaterFull,
		Icon	=	Bucket_Water,
	}


Bucket of Water
File:Bucket with water.png


Bucket of Plaster
Bucket with plaster.png