Water Bottle (Beer)

From PZwiki
Revision as of 21:07, 5 April 2023 by Faalagorn (talk | contribs) (Alphabetize navboxes)
The Game WorldItemsFoodDrinksWater Bottle (Beer)
Water Bottle
{{{display_name}}}
Empty Bottle Water Bottle Beer Bottle
General
Category Empty: Water Container
Full: Water
Encumbrance
Heavy Load
Empty: 0.1
Full: 0.4
Function Smashed Bottle
• Water storage
Capacity 6.25 units
Technical details
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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
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 BeerBottle.png Retrieved: Build 41.66

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

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

Empty Bottle BeerBottle.png Retrieved: Build 41.66

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

See also