Water Bottle (Bourbon)

From PZwiki
Revision as of 06:24, 12 March 2022 by Vaileasys (talk | contribs) (Created page with "{{languages}} {{header|The Game World|Items|Food|Drinks|version=Version 41|incver=66}}{{Infobox food | name = Water Bottle | name_colour = | name_text_colour = | image = Whi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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
Technical details
Item ID Base.WhiskeyEmpty
Base.WhiskeyWaterFull

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 bourbon (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 a garbage bins.

Code

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

Water Bottle Whiskey Water Full.png Retrieved: Build 41.66

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

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

Empty Bottle WhiskeyEmpty.png Retrieved: Build 41.66

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

See also