Water Bottle (Mayonnaise)

From PZwiki
Revision as of 12:29, 27 January 2024 by VaileasysBot (talk | contribs) (Category Project: Water containers)

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.68).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Water Bottle
{{{display_name}}}
Empty Bottle Water Bottle Mayonnaise
General
Category Empty: Water Container
Full: Water
Encumbrance
Heavy Load
Empty: 0.1
Full: 0.5
Function Molotov Cocktail
Smashed Bottle
• Water storage
Capacity 6.25 units
Technical details
Item ID farming.MayonnaiseEmpty
farming.MayonnaiseWaterFull

A water bottle is an essential water containing item in Project Zomboid.

Usage

The empty bottle is the resulting product after consuming/emptying a jar of mayonnaise (or water). It can be refilled at any water source.

Distribution

Neither the empty bottle nor the water bottle can be found in the world. They can only be obtained by emptying a jar of mayonnaise.

Code

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

Water Bottle TZ MayonnaiseWFull.png Retrieved: Build 41.68

    item MayonnaiseWaterFull
	{
		DisplayCategory 	= Water,
		Type		 	= Drainable,
		DisplayName		= Water Bottle,
		Icon			= TZ_MayonnaiseWFull,
		Weight			= 0.5,
		ReplaceOnDeplete 	= MayonnaiseEmpty,
		UseWhileEquipped 	= false,
		UseDelta		= 0.16,
		ReplaceOnUseOn  	= WaterSource-MayonnaiseWaterFull,
		IsWaterSource		= true,
		CanStoreWater		= true,
		FillFromDispenserSound 	= GetWaterFromDispenserPlasticMedium,
		FillFromTapSound 	= GetWaterFromTapPlasticMedium,
		StaticModel 		= MayoJar,
		WorldStaticModel 	= MayoJar_Ground,
    }

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

Empty Bottle TZ MayonnaiseEmpty.png Retrieved: Build 41.68

    item MayonnaiseEmpty
	{
		DisplayCategory 	= WaterContainer,
		Type			= Normal,
		DisplayName		= Empty Bottle,
		Icon			= TZ_MayonnaiseEmpty,
		Weight			= 0.1,
		ReplaceOnUseOn  	= WaterSource-MayonnaiseWaterFull,
		CanStoreWater		= true,
		StaticModel 		= MayoJar,
		WorldStaticModel 	= MayoJarEmpty_Ground,
	}

See also