Water Bottle: Difference between revisions

From PZwiki
mNo edit summary
(Redesigned page, +Navbar, +version category, reworked description, +code, added personalised recipe code)
Line 1: Line 1:
{{languages|Water Bottle}}
__NOTOC__
{{languages|Water_Bottle}}
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Consumables|Consumables]] -> [[:Category:Food|Food]] -> [[:Category:Drinks|Drinks]] -> [[{{PAGENAME}}|Water Bottle]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
 
{{Items  
{{Items  
|image = Water Bottle Full.png  
|image = Water Bottle Full.png  
|weight = 0.8
|weight = 0.8
}}
}}
Water bottles will automatically satiate [[Thirst|thirst]], as the player lives in Project Zomboid.  
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, you need to have it in your main inventory, then you right click on any water source (Sinks, wells, [[Rain Collector Barrel|Rain Collectors]]) and click "Fill empty bottle". As of Build 31, water from rivers or Rain Collector barrels will be tainted, causing the player to be [[Moodles#Sick|Sick]]. 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. Water Bottles are found in trash cans and refrigerators. It can hold the equivalent of 10 [[A Mug of Water|mugs of water]].
A bottle of water will gradually lose its content, and it will have to be refilled. To refill an empty bottle, you need to have it in your main inventory, then you right click on any water source (Sinks, wells, [[Rain Collector Barrel|Rain Collectors]]) and click "Fill empty bottle".  
 
<br><br>
As of Build 31, water from rivers or Rain Collector barrels will be tainted, causing the player to be [[Moodles#Sick|Sick]]. After a random amount of days at the start of a new game, the water works will be gone, and the character will have to survive on scavenged water or what is left in cisterns and house systems. Water Bottles are found in trash cans and refrigerators.  
<br><br>See the [[Water]] page for comparisons for water storage.


==Recipe==
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
! Skill Level
{{Recipe|2
|item1=[[Empty Bottle]]|q1=x1 |picitem1=File:UTENSILEmptyWaterBottle.png |tag1=
|item2=[[Water]] |q2=x1 |picitem2=File:Water drop.png
|product=[[Water bottle|Water Bottle]]|qproduct=x1 |picproduct=File:Water Bottle Full.png
|description=A Bottle of Water
|level= No crafting level required.}}
|}


== Code ==
== Code ==
  <nowiki>item WaterBottleFull
  <nowiki>
{
item WaterBottleFull
IsWaterSource = TRUE,
Type = Drainable,
Weight = 0.8,
DisplayName = Water bottle,
CanStoreWater = TRUE,
Icon = WaterBottle_Full,
Type = Drainable,
Weight = 0.8,
UseWhileEquipped = FALSE,
ReplaceOnDeplete = WaterBottleEmpty,
UseDelta = 0.1,
UseWhileEquipped = false,
DisplayName = Water Bottle,
UseDelta = 0.1,
ReplaceOnDeplete = WaterBottleEmpty,
ReplaceOnUseOn = WaterSource-WaterBottleFull,
ReplaceOnUseOn = WaterSource-WaterBottleFull,
IsWaterSource = true,
Icon = WaterBottle_Full,
CanStoreWater = true
}</nowiki>
</nowiki>
[[Category:Version 0.2.0p]]
{{Navbox/Consumables}}
[[Category:Consumables]]
[[Category:Consumables]]
[[Category:Items]]
[[Category:Drinks]]
[[Category:Drinks]]
[[Category:Version 34.28]]

Revision as of 22:16, 24 August 2016


Page Updated @ Version: 34.28
   Navigation - Main Index -> The Game World -> Items -> Consumables -> Food -> Drinks -> Water Bottle   

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, you need to have it in your main inventory, then you right click on any water source (Sinks, wells, Rain Collectors) and click "Fill empty bottle".

As of Build 31, water from rivers or Rain Collector barrels will be tainted, causing the player to be Sick. After a random amount of days at the start of a new game, the water works will be gone, and the character will have to survive on scavenged water or what is left in cisterns and house systems. Water Bottles are found in trash cans and refrigerators.

See the Water page for comparisons for water storage.

Recipe

Name Recipe Description Skill Level
[[File:{{{product_image}}}|64x64px|class=pixelart link=[[{{{product_name}}}]]]]
[[{{{product_name}}}]]
none none none none

Code

	item WaterBottleFull
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.1,
		DisplayName		= Water Bottle,
		ReplaceOnDeplete	= WaterBottleEmpty,
		ReplaceOnUseOn		= WaterSource-WaterBottleFull,
		Icon			= WaterBottle_Full,
	

Template:Navbox/Consumables