Water Bottle (Orange Soda): Difference between revisions

From PZwiki
m (clean up, replaced: wikitable → pztable)
(Standardized header and color scheme. Standardized Code section.)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{languages|Water_Bottle_(Pop)}}
{{languages}}
<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 -->
{{header|Project Zomboid|Items|Food|Drinks|type=Food|version=Version 34|incver=28}}
<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]] -> [[Water Bottle (Pop)]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->


{{Items
{{Infobox drainable
|image = UTENSILPopBottleofWater.png
|display_name=Water Bottle (Whiskey)
|weight = 0.8
|name_colour=Tool
|name_text_colour=Tool
|image=UTENSILPopBottleofWater.png
|image_width = 120px
|alternate_image=Pop_empty.png
|alternate_name=Empty Pop Bottle
|alternate_link=
|weight='''Empty:''' 0.1<br>'''Full:''' 0.8
|primary_use=Water storage
|max_units=10
|contents=[[Water]]
|can_boil_water=False
|class_name=Base.PopBottleEmpty<br>Base.WaterPopBottle
}}
}}
Pop Water bottles will automatically satiate [[thirst]], as the player lives in Project Zomboid.  
Pop Water bottles will automatically satiate [[thirst]], as the player lives in Project Zomboid.  
A Pop 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".  
A Pop 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".  
Line 36: Line 47:


== Code ==
== Code ==
  <nowiki>
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=43}}
  <pre>
item WaterPopBottle
item WaterPopBottle
IsWaterSource = TRUE,
IsWaterSource = TRUE,
Line 49: Line 62:
Icon = Pop_water,
Icon = Pop_water,
CustomContextMenu = Drink,
CustomContextMenu = Drink,
CustomEatSound = PZ_DrinkingFromBottle,
CustomEatSound = DrinkingFromBottle,
</nowiki>
</pre>
 
{{Navbox/Consumables}}
{{Navbox/Consumables}}
[[Category:Consumables]]
[[Category:Consumables]]
[[Category:Items]]
[[Category:Items]]
[[Category:Drinks]]
[[Category:Drinks]]
[[Category:Version 34.28]]

Revision as of 00:34, 9 April 2021


Project ZomboidItemsFoodDrinksWater Bottle (Orange Soda)
Water Bottle (Whiskey)
Water Bottle (Whiskey)
Empty Pop Bottle
General
Category Item
Encumbrance
Heavy Load
Empty: 0.1
Full: 0.8
Function Water storage
Capacity 10 units
Contents Water
Can boil water False
Technical details
item ID Base.PopBottleEmpty
Base.WaterPopBottle


Pop Water bottles will automatically satiate thirst, as the player lives in Project Zomboid. A Pop 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. Pop Water Bottles are found in trash cans and refrigerators.

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.


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

From items.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 40.43

	item WaterPopBottle
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.1,
		DisplayName		= Water Bottle,
		ReplaceOnDeplete	= PopBottleEmpty,
		ReplaceOnUseOn		= WaterSource-WaterPopBottle,
		Icon			= Pop_water,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= DrinkingFromBottle,
	

Template:Navbox/Consumables