Water Bottle (Bourbon)

From PZwiki
Revision as of 21:12, 5 April 2023 by Faalagorn (talk | contribs) (Cleanup)
The Game WorldItemsFoodDrinksWater Bottle (Bourbon)
Water Bottle
{{{display_name}}}
Empty Bottle Water Bottle Bourbon
General
Category Empty: Water Container
Full: Water
Encumbrance
Heavy Load
Empty: 0.3
Full: 0.7
Function Molotov Cocktail
Smashed Bottle
• Water storage
Capacity 12.5 units
Contents Water
Can boil water True
Technical details
item ID Base.WhiskeyEmpty
Base.WhiskeyWaterFull

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 the players main inventory (i.e. not in a bag).

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

The bourbon bottle is slightly better than a standard water bottle, weighing 0.7 when full and holding 12.5 units of water, in comparison to a standard bottle's 0.8 weight and 10 unit capacity

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.

Crafting

The empty bottle can be used as a component in crafting.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Molotov.png
Molotov Cocktail
0 XP none
(consumed)
Petrol.png
Gas Can
(1 unit)

(consumed)

(consumed)
BrokenBottle.png
Smashed Bottle
0 XP none
(consumed)


Distribution

Empty bottles can be found on a zombie corpse or in a garbage bins.

Code

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

Water Bottle Whiskey Water Full.png Retrieved: Build 41.73

	item WhiskeyWaterFull
	{
		DisplayName		= Water Bottle,
		DisplayCategory		= Water,
		Type 			= Drainable,
		Weight			= 0.7,
		Icon			= Whiskey_Water_Full,
		CanStoreWater		= TRUE,
		EatType			= Bourbon,
		FillFromDispenserSound	= GetWaterFromDispenserGlass,
		FillFromTapSound	= GetWaterFromTapGlass,
		IsCookable		= TRUE,
		IsWaterSource		= TRUE,
		ReplaceOnDeplete	= WhiskeyEmpty,
		ReplaceOnUseOn		= WaterSource-WhiskeyWaterFull,
		UseDelta		= 0.08,
		UseWhileEquipped	= FALSE,
		CustomEatSound		= DrinkingFromBottleGlass,
		StaticModel		= WhiskeyBottle,
		WorldStaticModel	= WhiskeyBottleGround,
	}

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

Empty Bottle WhiskeyEmpty.png Retrieved: Build 41.73

	item WhiskeyEmpty
	{
		DisplayCategory = WaterContainer,
		Weight			= 0.3,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Bottle,
		ReplaceOnUseOn		= WaterSource-WhiskeyWaterFull,
		Icon			= WhiskeyEmpty,
		StaticModel		= WhiskeyBottle,
		WorldStaticModel	= WhiskeyBottleGround,
		Tags			= EmptyPetrol,
		ReplaceTypes		= PetrolSource WhiskeyPetrol;WaterSource WhiskeyWaterFull,
	}

Errata

This container provides the best water-to-weight ratio of any container at 17.5x.

See also