Water Bottle (White Wine)

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Project ZomboidItemsFoodDrinksWater containersWater Bottle (White Wine)
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
WhiteWineBottle Model.png
Water Bottle
White Wine White Wine
General
Category
Empty: Water Container
Full: Water
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.3
Full: 1.0
Function
Molotov Cocktail
Smashed Bottle
• Water storage
Properties
Capacity
12.5 units
Technical
Item ID
Base.WineEmpty
Base.WineWaterFull

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

Usage

The empty bottle is the resulting product after consuming/emptying a bottle of white wine (or water). It can be refilled at any water source.

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 garbage bins.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

WineEmpty.png Base.WineWaterFull
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WineWaterFull
	{
		DisplayName = Water Bottle,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 1,
		Icon = WineEmpty,
		CanStoreWater = TRUE,
		EatType = Bourbon,
		FillFromDispenserSound = GetWaterFromDispenserGlass,
		FillFromTapSound = GetWaterFromTapGlass,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		ReplaceOnDeplete = WineEmpty,
		ReplaceOnUseOn = WaterSource-WineWaterFull,
		UseDelta = 0.08,
		UseWhileEquipped = FALSE,
		CustomEatSound = DrinkingFromBottleGlass,
		StaticModel = WhiteWineBottle,
		WorldStaticModel = WineWhiteGround,
	}

WineEmpty.png Base.WineEmpty
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item WineEmpty
	{
	    DisplayCategory = WaterContainer,
		Weight	=	0.3,
		CanStoreWater = TRUE,
		Type	=	Normal,
		DisplayName	=	Empty Bottle,
		ReplaceOnUseOn	=	WaterSource-WineWaterFull,
		Icon	=	WineEmpty,
		StaticModel = WhiteWineBottle,
		WorldStaticModel = WineWhiteGround,
		Tags = EmptyPetrol,
		ReplaceTypes = PetrolSource WinePetrol;WaterSource WineWaterFull,
	}

See also