Water Bottle (Beer)

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 (Beer)
Spiffo controlyourself.png
This page was last updated for an older version (41.66).
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
BeerBottle Model.png
Water Bottle
Beer Bottle Beer Bottle
General
Category
Empty: Water Container
Full: Water
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.1
Full: 0.4
Function
Smashed Bottle
• Water storage
Properties
Capacity
6.25 units
Technical
Item ID
Base.BeerEmpty
Base.BeerWaterFull

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

Usage

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

Crafting

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

Product Ingredients Tools Requirements Workstation XP
BrokenBottle.png
Smashed Bottle
One of:
WineEmpty.png Empty Bottle (disambiguation) ×1
Wine2Empty.png Empty Bottle (disambiguation) ×1
WhiskeyEmpty.png Empty Bottle (disambiguation) ×1
BeerBottle.png Empty Bottle (disambiguation) ×1
none none none none

Distribution

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

Code

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

BeerBottle.png Water Bottle
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item BeerWaterFull
	{
		DisplayName = Water Bottle,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.4,
		Icon = BeerBottle,
		CanStoreWater = TRUE,
		FillFromDispenserSound = GetWaterFromDispenserGlass,
		FillFromTapSound = GetWaterFromTapGlass,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		ReplaceOnDeplete = BeerEmpty,
		ReplaceOnUseOn = WaterSource-BeerWaterFull,
		UseDelta = 0.16,
		UseWhileEquipped = FALSE,
		CustomEatSound = DrinkingFromBottleGlass,
		StaticModel = BeerBottle,
		WorldStaticModel = BeerBottle,
	}

BeerBottle.png Empty Bottle
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item BeerEmpty
    {
        DisplayCategory = WaterContainer,
        Weight	=	0.1,
        CanStoreWater = TRUE,
        Type	=	Normal,
        DisplayName	=	Empty Bottle,
        ReplaceOnUseOn	=	WaterSource-BeerWaterFull,
        Icon	=	BeerBottle,
        StaticModel = BeerBottle,
        WorldStaticModel = BeerBottle,
    }

See also