Water Bottle (Orange Soda): Difference between revisions

From PZwiki
No edit summary
mNo edit summary
Line 1: Line 1:
{{languages}}
{{languages}}
Water bottles will automatically satiate [[Thirst|thirst]], as the player lives in Project Zomboid. A bottle of water will gradually lose its content, and it will have to be refilled. To refill an empty bottle by dragging it from inventory in a faucet and clicking, and you have a full bottle. However, after a random number of days in the game, the water works will be gone, and you will have to survive off the water you already have. The pop version of the water bottle can only be found by drinking a orange soda, and then you will get an empty water bottle. It acts the same way as the blue variant of the water bottle.
Water bottles will automatically satiate [[Thirst|thirst]], as the player lives in Project Zomboid. A bottle of water will gradually lose its content, and it will have to be refilled. To refill an empty bottle by dragging it from inventory in a faucet and clicking, and you have a full bottle. However, after a random number of days in the game, the water works will be gone, and the character will have to survive off the water he or she already has. The pop version of the water bottle can only be found by drinking a orange soda, and then you will get an empty water bottle. It acts the same way as the blue variant of the water bottle.
{{Items  
{{Items  
|image = WaterBottleOrangeSodaBottle.jpg  
|image = WaterBottleOrangeSodaBottle.jpg  
|weight = 0.5
|weight = 1.5
}}
}}
== Code ==
== Code ==
Line 9: Line 9:
{
{
Type = Drainable,
Type = Drainable,
DisplayName = Water Bottle,
DisplayName = Water Bottle,
Icon = Pop_water,
Icon = Pop_water,
Weight = 1,
Weight = 1.5,
ReplaceOnDeplete = PopBottleEmpty,
ReplaceOnDeplete = PopBottleEmpty,
UseWhileEquipped = false,
UseWhileEquipped = false,
UseDelta = 0.1,
UseDelta = 0.1,
ReplaceOnUseOn = WaterSource-WaterPopBottle,
ReplaceOnUseOn = WaterSource-WaterPopBottle,
IsWaterSource = true,
IsWaterSource = true,
CanStoreWater = true
CanStoreWater = true
 
 
}</nowiki>
}</nowiki>

Revision as of 08:01, 5 May 2013

Water bottles will automatically satiate thirst, as the player lives in Project Zomboid. A bottle of water will gradually lose its content, and it will have to be refilled. To refill an empty bottle by dragging it from inventory in a faucet and clicking, and you have a full bottle. However, after a random number of days in the game, the water works will be gone, and the character will have to survive off the water he or she already has. The pop version of the water bottle can only be found by drinking a orange soda, and then you will get an empty water bottle. It acts the same way as the blue variant of the water bottle. Template:Items

Code

item WaterPopBottle
{
	Type				=			Drainable,
		DisplayName			=			Water Bottle,
		Icon				=			Pop_water,
		Weight				=			1.5,
		ReplaceOnDeplete	=			PopBottleEmpty,
		UseWhileEquipped	= 			false,
		UseDelta			=			0.1,
		ReplaceOnUseOn 		=			WaterSource-WaterPopBottle,
		IsWaterSource		=			true,
		CanStoreWater		=			true


	
}