Water Bottle (White Wine): Difference between revisions

From PZwiki
mNo edit summary
(Cleanup)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Food|Drinks|version=Version 41|incver=68}}{{Infobox food
{{header|The Game World|Items|Food|Drinks|version=Version 41|incver=68}}{{Infobox food
|name=Water Bottle
| name = Water Bottle
|name_colour=
| name_colour =  
|name_text_colour=
| name_text_colour =  
|image=WhiteWineBottle Model.png
| image = WhiteWineBottle_Model.png
|image_width=300px
| image_width = 300px
|alternate_image=WineEmpty.png
| alternate_image = WineEmpty.png
|alternate_name=Empty Bottle
| alternate_name = Empty Bottle
|alternate_link=
| alternate_link =  
|alternate_image2=WineEmpty.png
| alternate_image2 = WineEmpty.png
|alternate_name2=Water Bottle
| alternate_name2 = Water Bottle
|alternate_link2=
| alternate_link2 =  
|alternate_image3=WineFull.png
| alternate_image3 = WineFull.png
|alternate_name3=White Wine
| alternate_name3 = White Wine
|alternate_link3=White Wine
| alternate_link3 = White Wine
|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 = &bull; [[Molotov Cocktail]]<br>&bull; [[Smashed Bottle]]<br>&bull; Water storage
|max_units=12.5
| max_units = 12.5
|class_name=Base.WhiskeyEmpty<br>Base.WhiskeyWaterFull
| class_name=Base.WhiskeyEmpty<br>Base.WhiskeyWaterFull
}}A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].  
}}A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].  


Line 25: Line 24:
The empty bottle is the resulting product after consuming/emptying a bottle of [[White Wine|white wine]] (or water). It can be refilled at any [[water]] source.  
The empty bottle is the resulting product after consuming/emptying a bottle of [[White Wine|white wine]] (or water). It can be refilled at any [[water]] source.  


== Crafting ==
==Crafting==
The empty bottle can be used as a component in crafting.  
The empty bottle can be used as a component in crafting.  
{{Crafting header|ing=3}}
{{Crafting header|ing=3}}
Line 35: Line 34:
Empty bottles can be found on a [[zombie]] corpse or in [[Containers#Bins|garbage bins]].
Empty bottles can be found on a [[zombie]] corpse or in [[Containers#Bins|garbage bins]].


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


''Water Bottle [[File:WineEmpty.png]]''
''Water Bottle [[File:WineEmpty.png]]''
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41|incver=68}}
<pre> item WineWaterFull
<pre>
item WineWaterFull
{
{
DisplayCategory = Water,
DisplayCategory = Water,
Line 59: Line 59:
WorldStaticModel = WineWhiteGround,
WorldStaticModel = WineWhiteGround,
EatType = Bourbon,
EatType = Bourbon,
}</pre>
}
</pre>


'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
Line 65: Line 66:
''Empty Bottle [[File:WineEmpty.png]]''
''Empty Bottle [[File:WineEmpty.png]]''
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41|incver=68}}
<pre> item WineEmpty
<pre>
item WineEmpty
{
{
DisplayCategory = WaterContainer,
DisplayCategory = WaterContainer,
Line 76: Line 78:
StaticModel = WhiteWineBottle,
StaticModel = WhiteWineBottle,
WorldStaticModel = WineWhiteGround,
WorldStaticModel = WineWhiteGround,
}</pre>
}
</pre>


==See also==
==See also==
Line 84: Line 87:
*[[Water Bottle]]
*[[Water Bottle]]


{{Navbox_food}}
{{Navbox equipment}}
{{Navbox_equipment}}
{{Navbox food}}

Revision as of 21:34, 5 April 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