Water Bottle (White Wine): Difference between revisions

From PZwiki
(Cleanup)
m (200px)
Line 4: Line 4:
|name_text_colour=
|name_text_colour=
|image=WhiteWineBottle Model.png
|image=WhiteWineBottle Model.png
|image_width=300px
|image_width=200px
|alternate_image=WineEmpty.png
|alternate_image=WineEmpty.png
|alternate_name=Empty Bottle
|alternate_name=Empty Bottle
Line 16: Line 16:
|category='''Empty:''' Water Container<br>'''Full:''' Water
|category='''Empty:''' Water Container<br>'''Full:''' Water
|weight='''Empty:''' 0.3<br>'''Full:''' 1.0
|weight='''Empty:''' 0.3<br>'''Full:''' 1.0
|function=&bull; [[Molotov Cocktail]]<br>&bull; [[Smashed Bottle]]<br>&bull; Water storage
|function=[[Molotov Cocktail]]<br>[[Smashed Bottle]]<br>Water storage
|max_units=12.5
|max_units=12.5
|class_name=Base.WhiskeyEmpty<br>Base.WhiskeyWaterFull
|class_name=Base.WhiskeyEmpty<br>Base.WhiskeyWaterFull

Revision as of 20:14, 22 June 2023

The Game WorldItemsFoodDrinksWater Bottle (White Wine)
Water Bottle
{{{display_name}}}
Empty Bottle Water Bottle White Wine
General
Category Empty: Water Container
Full: Water
Encumbrance
Heavy Load
Empty: 0.3
Full: 1.0
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 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

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

Water Bottle WineEmpty.png Retrieved: Build 41.68

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

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

Empty Bottle WineEmpty.png Retrieved: Build 41.68

	item WineEmpty
	{
		DisplayCategory 	= WaterContainer,
		Weight			= 0.3,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Bottle,
		ReplaceOnUseOn		= WaterSource-WineWaterFull,
		Icon			= WineEmpty,
		StaticModel 		= WhiteWineBottle,
		WorldStaticModel 	= WineWhiteGround,
	}

See also