Water Bottle (Orange Soda): Difference between revisions

From PZwiki
(→‎Gallery: added gasoline bottle model)
m (Category Project: Water containers)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Drinks|type=Food|version=Version 41|incver=68}}{{Infobox drainable
{{Languages}}
{{header/sandbox2|Project Zomboid|Items|Food|Drinks|Water containers}}
{{page version|41.68}}
{{Infobox drainable
|display_name=Water Bottle
|display_name=Water Bottle
|name_colour=Tool
|name_colour=Tool
Line 52: Line 55:


''Water Bottle'' [[File:Pop_water.png]]
''Water Bottle'' [[File:Pop_water.png]]
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41.68}}
<pre>
<pre>
item WaterPopBottle
item WaterPopBottle
Line 79: Line 82:


''Empty Bottle'' [[File:Pop_empty.png]]
''Empty Bottle'' [[File:Pop_empty.png]]
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41.68}}
<pre>
<pre>
item PopBottleEmpty
item PopBottleEmpty

Revision as of 12:29, 27 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.68).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Water Bottle
Water Bottle
Water Bottle Empty Orange Soda Bottle
General
Category Empty: Water Container
Full: Water
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

A water bottle is an essential water containing item in Project Zomboid.

Usage

A water bottle will automatically satiate the player's thirst, so long as it's in player's main inventory (i.e. not in a bag).

The empty bottle is the resulting product after consuming/emptying a bottle of orange soda (or water)

Refilling

The contents will gradually deplete, therefore requiring to be refilled. A water bottle can be filled so long as it isn't full. To refill a water bottle, either:

  1. Right-click a water containing item in the player' inventory (e.g. cooking pot with water) and left-click "Pour into" > "Water Bottle".
  2. Right-click a water source (i.e. sink, well, rain collector, etc.) and left-click "Fill" > "Water Bottle".

Water from rivers or rain collector barrels will be tainted, causing the player to become sick.

After a random number of days, the waterworks will shut off, requiring the player to survive on scavenged water or what is left in cisterns and house systems.

Distribution

Empty bottles can be found in bins.

Trivia

  • Empty Orange Soda Bottle is one of the oldest items in Project Zomboid and was originally called "Empty Pop Bottle", however was changed in Build 41.
  • Empty Orange Soda Bottle is the only empty bottle in Project Zomboid called something other than "Empty Bottle".

Gallery

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

Water Bottle Pop water.png Retrieved: Build 41.68

	item WaterPopBottle
	{
		DisplayCategory 	= Water,
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		FillFromDispenserSound 	= GetWaterFromDispenserPlasticMedium,
		FillFromTapSound 	= GetWaterFromTapPlasticMedium,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.1,
		DisplayName		= Water Bottle,
		ReplaceOnDeplete	= PopBottleEmpty,
		ReplaceOnUseOn		= WaterSource-WaterPopBottle,
		Icon			= Pop_water,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= DrinkingFromBottlePlastic,
		StaticModel 		= PopBottle,
		WorldStaticModel 	= EmptyPopBottle,
	}

From items.txt (Project Zomboid directory/media/scripts/)

Empty Bottle Pop empty.png Retrieved: Build 41.68

	item PopBottleEmpty
	{
		DisplayCategory 	= WaterContainer,
		Weight			= 0.1,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Pop Bottle,
		ReplaceOnUseOn		= WaterSource-WaterPopBottle,
		Icon			= Pop_empty,
		MetalValue 		= 5,
		WorldStaticModel 	= EmptyPopBottle,
	}

See also