Water Bottle: Difference between revisions

From PZwiki
No edit summary
No edit summary
Line 2: Line 2:
{{Items  
{{Items  
|image = Water Bottle Full.png  
|image = Water Bottle Full.png  
|weight = 1
|weight = 1.5
}}
}}


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. Unlike the orange (soda) variant, this water bottle can only be found in corpses of zombies and NPCs, and you get one at the beginning of the game.
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 on scavenged water. This water bottle is the rarer of the 2 "standard" water bottles. It is found in trash cans and refridgerators.




Line 12: Line 12:
  <nowiki>item WaterBottleFull
  <nowiki>item WaterBottleFull
{
{
Type = Drainable,
DisplayName = Water bottle,
Type = Drainable,
Icon = WaterBottle_Full,
DisplayName = Water bottle,
Weight = 1,
Icon = WaterBottle_Full,
ReplaceOnDeplete         = WaterBottleEmpty,
Weight = 1.5,
UseWhileEquipped         = false,
ReplaceOnDeplete = WaterBottleEmpty,
UseDelta = 0.1,
UseWhileEquipped = false,
ReplaceOnUseOn         = WaterSource-WaterBottleFull,
UseDelta = 0.1,
IsWaterSource         = true,
ReplaceOnUseOn = WaterSource-WaterBottleFull,
CanStoreWater         = true
IsWaterSource = true,
CanStoreWater = true
}</nowiki>
}</nowiki>

Revision as of 08:00, 5 May 2013

Template:Items

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 on scavenged water. This water bottle is the rarer of the 2 "standard" water bottles. It is found in trash cans and refridgerators.


Code

item WaterBottleFull
{
	
		Type				=			Drainable,
		DisplayName			=			Water bottle,
		Icon				=			WaterBottle_Full,
		Weight				=			1.5,
		ReplaceOnDeplete	=			WaterBottleEmpty,
		UseWhileEquipped	= 			false,
		UseDelta			=			0.1,
		ReplaceOnUseOn 		=			WaterSource-WaterBottleFull,
		IsWaterSource		=			true,
		CanStoreWater		=			true
	
}