Water Bottle (Whiskey): Difference between revisions

From PZwiki
Water Bottle (Whiskey)
No edit summary
No edit summary
Line 1: Line 1:
{{languages}}
{{languages}}
Using a [[Empty Bottle of  (Whiskey)|Whiskey Bottle]] on a faucet will give you one whisky version of the Water Bottle. This version of the water bottle acts the same way as a regular [[Water Bottle]], and the water is consumed automatically. The whiskey bottle weights 4 pounds, making it more heavier than the traditional bottle of water. It gives the same amount of water, so the player should instead use regular [[Water Bottle]]s or it's soda variant, but it is still good enough.
Using an empty whiskey bottle on a faucet will give you one whisky version of the Water Bottle. This version of the water bottle acts the same way as a regular [[Water Bottle]], and the water is consumed automatically. The whiskey bottle weights 4 pounds, making it more heavier than the traditional bottle of water. It gives the same amount of water, so the player should instead use regular [[Water Bottle]]s or it's soda variant if possible.


To refill a bottle of whiskey, one must drag and click the bottle of whiskey in a faucet. Doing this will refill the bottle of whiskey. After a random number of days, the water works will fail, and you will have to rely on the stockpiled containers, as refilling no longer works.
To refill a bottle of whiskey, one must drag and click the bottle of whiskey in a faucet. Doing this will refill the bottle of whiskey. After a random number of days, the water works will fail, and you will have to rely on the stockpiled containers, as refilling no longer works.
{{Items  
{{Items  
|image = WaterBottleWhiskeyBottle.jpg  
|image = WaterBottleWhiskeyBottle.jpg  
|weight = 4
|weight = 1.7
}}
}}
== Code ==
== Code ==
Line 11: Line 11:
{
{
Type = Drainable,
Type = Drainable,
DisplayName = Water bottle,
DisplayName = Water bottle,
Icon = Whiskey_Water_Full,
Icon = Whiskey_Water_Full,
Weight = 4,
Weight = 1.7,
ReplaceOnDeplete = WhiskeyEmpty,
ReplaceOnDeplete = WhiskeyEmpty,
UseWhileEquipped = false,
UseWhileEquipped = false,
UseDelta = 0.08,
UseDelta = 0.08,
ReplaceOnUseOn  = WaterSource-WhiskeyWaterFull,
ReplaceOnUseOn  = WaterSource-WhiskeyWaterFull,
IsWaterSource = true,
IsWaterSource = true,
CanStoreWater = true
CanStoreWater = true
}</nowiki>
}</nowiki>

Revision as of 08:03, 5 May 2013

Using an empty whiskey bottle on a faucet will give you one whisky version of the Water Bottle. This version of the water bottle acts the same way as a regular Water Bottle, and the water is consumed automatically. The whiskey bottle weights 4 pounds, making it more heavier than the traditional bottle of water. It gives the same amount of water, so the player should instead use regular Water Bottles or it's soda variant if possible.

To refill a bottle of whiskey, one must drag and click the bottle of whiskey in a faucet. Doing this will refill the bottle of whiskey. After a random number of days, the water works will fail, and you will have to rely on the stockpiled containers, as refilling no longer works. Template:Items

Code

item WhiskeyWaterFull
{
	Type			 	=			Drainable,
		DisplayName		 	=			Water bottle,
		Icon			 	=			Whiskey_Water_Full,
		Weight			 	=			1.7,
		ReplaceOnDeplete 	=			WhiskeyEmpty,
		UseWhileEquipped 	= 			false,
		UseDelta			=			0.08,
		ReplaceOnUseOn  	=			WaterSource-WhiskeyWaterFull,
		IsWaterSource		=			true,
		CanStoreWater		=			true
	
}