Water Bottle (Remoulade): Difference between revisions

From PZwiki
(Redirected page to Remoulade)
Tag: New redirect
 
(Removed redirect to Remoulade)
Tag: Removed redirect
Line 1: Line 1:
#REDIRECT [[Remoulade]]
{{languages}}
{{header|The Game World|Items|Food|Drinks|version=Version 41|incver=68}}{{Infobox food
| name = Water Bottle
| name_colour =
| name_text_colour =
| image = JarLid_Remoulade_Model.png
| image_width = 300px
| alternate_image = TZ_RemouladeEmpty.png
| alternate_name = Empty Bottle
| alternate_link =
| alternate_image2 = TZ_RemouladeWFull.png
| alternate_name2 = Water Bottle
| alternate_link2 =
| alternate_image3 = TZ_RemouladeFull.png
| alternate_name3 = Remoulade
| alternate_link3 = Remoulade
| category = '''Empty:''' Water Container<br>'''Full:''' Water
| weight = '''Empty:''' 0.1<br>'''Full:''' 0.5
| function = &bull; [[Molotov Cocktail]]<br>&bull; [[Smashed Bottle]]<br>&bull; Water storage
| max_units = 6.25
| class_name=farming.RemouladeEmpty<br>farming.RemouladeWaterFull
}}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 [[remoulade]] (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 remoulade.
 
== Code ==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
 
''Water Bottle [[File:TZ_RemouladeWFull.png]]''
{{Retrieved|version=41|incver=68}}
<pre>    item RemouladeWaterFull
{
DisplayCategory = Water,
Type = Drainable,
DisplayName = Water Bottle,
Icon = TZ_RemouladeWFull,
Weight = 0.5,
ReplaceOnDeplete = RemouladeEmpty,
UseWhileEquipped = false,
UseDelta = 0.16,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
IsWaterSource = true,
CanStoreWater = true,
FillFromDispenserSound = GetWaterFromDispenserPlasticMedium,
FillFromTapSound = GetWaterFromTapPlasticMedium,
StaticModel = RemouladeJar,
WorldStaticModel = Remoulade_Ground,
}</pre>
 
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
 
''Empty Bottle [[File:TZ_RemouladeEmpty.png]]''
{{Retrieved|version=41|incver=68}}
<pre>    item RemouladeEmpty
{
DisplayCategory = WaterContainer,
Type = Normal,
DisplayName = Empty Bottle,
Icon = TZ_RemouladeEmpty,
Weight = 0.1,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
CanStoreWater = true,
StaticModel = RemouladeJar,
WorldStaticModel = RemouladeEmpty_Ground,
}</pre>
 
==See also==
*[[Mayonnaise]]
*[[Water Bottle (Mayonnaise)]]
 
{{Navbox_food}}
{{Navbox_equipment}}

Revision as of 11:33, 12 March 2022

The Game WorldItemsFoodDrinksWater Bottle (Remoulade)
Water Bottle
{{{display_name}}}
Empty Bottle Water Bottle Remoulade
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.RemouladeEmpty
farming.RemouladeWaterFull

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 remoulade (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 remoulade.

Code

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

Water Bottle TZ RemouladeWFull.png Retrieved: Build 41.68

    item RemouladeWaterFull
	{
		DisplayCategory 	= Water,
		Type			= Drainable,
		DisplayName		= Water Bottle,
		Icon			= TZ_RemouladeWFull,
		Weight			= 0.5,
		ReplaceOnDeplete 	= RemouladeEmpty,
		UseWhileEquipped 	= false,
		UseDelta		= 0.16,
		ReplaceOnUseOn  	= WaterSource-RemouladeWaterFull,
		IsWaterSource		= true,
		CanStoreWater		= true,
		FillFromDispenserSound 	= GetWaterFromDispenserPlasticMedium,
		FillFromTapSound 	= GetWaterFromTapPlasticMedium,
		StaticModel 		= RemouladeJar,
		WorldStaticModel 	= Remoulade_Ground,
	}

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

Empty Bottle TZ RemouladeEmpty.png Retrieved: Build 41.68

    item RemouladeEmpty
	{
		DisplayCategory 	= WaterContainer,
		Type			= Normal,
		DisplayName		= Empty Bottle,
		Icon			= TZ_RemouladeEmpty,
		Weight			= 0.1,
		ReplaceOnUseOn  	= WaterSource-RemouladeWaterFull,
		CanStoreWater		= true,
		StaticModel 		= RemouladeJar,
		WorldStaticModel 	= RemouladeEmpty_Ground,
	}

See also