Empty Bottle (Red Wine): Difference between revisions

From PZwiki
(Created page with "{{languages}} {{header|The Game World|Items|Food|Drinks|version=Version 41|incver=68}}{{Infobox food | name = Empty Bottle | name_colour = | name_text_colour = | image = Red...")
 
m (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 = Empty Bottle
| name = Empty Bottle
| name_colour =  
| name_colour =  
| name_text_colour =  
| name_text_colour =  
| image = RedWineBottle_Model.png
| image = RedWineBottle_Model.png
| image_width = 300px
| image_width = 200px
| alternate_image = Wine2Empty.png
| alternate_image = Wine2Empty.png
| alternate_name = Empty Bottle
| alternate_name = Empty Bottle
Line 22: Line 21:
Like other empty bottles, the empty red wine bottle can be filled with water, however it will turn into a [[Water Bottle (White Wine)|white wine bottle with water]], this is presumed to be a bug. Furthermore, since [[build 41]], the empty red wine bottle uses the [[Water Bottle (White Wine)|empty white wine bottle]] icon ([[File:WineEmpty.png]]), instead of the existing icon texture for an empty red wine bottle ([[File:Wine2Empty.png]]), also assumed to be a bug.  
Like other empty bottles, the empty red wine bottle can be filled with water, however it will turn into a [[Water Bottle (White Wine)|white wine bottle with water]], this is presumed to be a bug. Furthermore, since [[build 41]], the empty red wine bottle uses the [[Water Bottle (White Wine)|empty white wine bottle]] icon ([[File:WineEmpty.png]]), instead of the existing icon texture for an empty red wine bottle ([[File:Wine2Empty.png]]), also assumed to be a bug.  


== 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 32: Line 31:
Empty bottles can be found on a [[zombie]] corpse or in [[Tiles#Bins|garbage bins]].
Empty bottles can be found on a [[zombie]] corpse or in [[Tiles#Bins|garbage bins]].


== Code ==
==Code==
There is currently no water bottle variant of the red wine bottle within the game's code.  
There is currently no water bottle variant of the red wine bottle within the game's code.  


Line 39: Line 38:
''Empty Bottle [[File:WineEmpty.png]]''
''Empty Bottle [[File:WineEmpty.png]]''
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41|incver=68}}
<pre> item WineEmpty2
<pre>
item WineEmpty2
{
{
DisplayCategory = WaterContainer,
DisplayCategory = WaterContainer,
Line 50: Line 50:
StaticModel = RedWineBottle,
StaticModel = RedWineBottle,
WorldStaticModel = WineRedGround,
WorldStaticModel = WineRedGround,
}</pre>
}
</pre>


==See also==
==See also==
Line 58: Line 59:
*[[White Wine]]
*[[White Wine]]


{{Navbox_equipment}}
{{Navbox equipment}}

Revision as of 19:54, 22 June 2023

The Game WorldItemsFoodDrinksEmpty Bottle (Red Wine)
Empty Bottle
{{{display_name}}}
Empty Bottle Red Wine
General
Category Water Container
Encumbrance
Heavy Load
0.3
Function Molotov Cocktail
Smashed Bottle
• Water storage
Capacity 12.5 units
Technical details
Item ID Base.WineEmpty2

An empty bottle is the resulting produce after empty a bottle of red wine.

Usage

Like other empty bottles, the empty red wine bottle can be filled with water, however it will turn into a white wine bottle with water, this is presumed to be a bug. Furthermore, since build 41, the empty red wine bottle uses the empty white wine bottle icon (WineEmpty.png), instead of the existing icon texture for an empty red wine bottle (Wine2Empty.png), also assumed to be a bug.

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

There is currently no water bottle variant of the red wine bottle within the game's code.

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

Empty Bottle WineEmpty.png Retrieved: Build 41.68

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

See also