Water Bottle (Remoulade): Difference between revisions

From PZwiki
(→‎Trivia: Corrected RJ's name and reference)
m (Automated CodeBox update)
(13 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Food|Drinks|version=Version 41|incver=68}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Drinks|Water containers}}
{{Page version|41.68}}
{{Infobox item
|name=Water Bottle
|name=Water Bottle
|name_colour=
|model=JarLid_Remoulade_Model.png
|name_text_colour=
|icon=TZ_RemouladeEmpty.png
|image=JarLid_Remoulade Model.png
|icon_name=Empty Bottle
|image_width=200px
|icon2=TZ_RemouladeWFull.png
|alternate_image=TZ_RemouladeEmpty.png
|icon_name2=Water Bottle
|alternate_name=Empty Bottle
 
|alternate_link=
|icon3=TZ_RemouladeFull.png
|alternate_image2=TZ_RemouladeWFull.png
|icon_name3=Remoulade
|alternate_name2=Water Bottle
Remoulade
|alternate_link2=
|alternate_image3=TZ_RemouladeFull.png
|alternate_name3=Remoulade
|alternate_link3=Remoulade
|category='''Empty:''' Water Container<br>'''Full:''' Water
|category='''Empty:''' Water Container<br>'''Full:''' Water
|weight='''Empty:''' 0.1<br>'''Full:''' 0.5
|weight='''Empty:''' 0.1<br>'''Full:''' 0.5
|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=6.25
|max_units=6.25
|class_name=farming.RemouladeEmpty<br>farming.RemouladeWaterFull
|item_id=farming.RemouladeEmpty<br>farming.RemouladeWaterFull
}}A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].  
}}
 
A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].


==Usage==
==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.  
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==
==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.  
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==
==Code==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|
 
[[File:TZ_RemouladeWFull.png]] Water Bottle<br>
''Water Bottle [[File:TZ_RemouladeWFull.png]]''
{{CodeSnip
{{Retrieved|version=41|incver=68}}
  | lang = java
<pre>
  | line = true
    item RemouladeWaterFull
  | start = 360
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item RemouladeWaterFull
{
{
DisplayCategory = Water,
    DisplayCategory = Water,
Type = Drainable,
Type = Drainable,
DisplayName = Water Bottle,
DisplayName = Water Bottle,
Icon = TZ_RemouladeWFull,
Icon = TZ_RemouladeWFull,
Weight = 0.5,
Weight = 0.5,
ReplaceOnDeplete = RemouladeEmpty,
ReplaceOnDeplete = RemouladeEmpty,
UseWhileEquipped = false,
UseWhileEquipped = false,
UseDelta = 0.16,
UseDelta = 0.16,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
IsWaterSource = true,
IsWaterSource = true,
CanStoreWater = true,
CanStoreWater = true,
FillFromDispenserSound = GetWaterFromDispenserPlasticMedium,
FillFromDispenserSound = GetWaterFromDispenserPlasticMedium,
FillFromTapSound = GetWaterFromTapPlasticMedium,
FillFromTapSound = GetWaterFromTapPlasticMedium,
StaticModel = RemouladeJar,
StaticModel = RemouladeJar,
WorldStaticModel = Remoulade_Ground,
WorldStaticModel = Remoulade_Ground,
}
}  
</pre>
}}
 
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''


''Empty Bottle [[File:TZ_RemouladeEmpty.png]]''
[[File:TZ_RemouladeEmpty.png]] Empty Bottle<br>
{{Retrieved|version=41|incver=68}}
{{CodeSnip
<pre>
  | lang = java
    item RemouladeEmpty
  | line = true
  | start = 347
  | source = farming.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item RemouladeEmpty
{
{
DisplayCategory = WaterContainer,
    DisplayCategory = WaterContainer,
Type = Normal,
Type = Normal,
DisplayName = Empty Bottle,
DisplayName = Empty Bottle,
Icon = TZ_RemouladeEmpty,
Icon = TZ_RemouladeEmpty,
Weight = 0.1,
Weight = 0.1,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
ReplaceOnUseOn  = WaterSource-RemouladeWaterFull,
CanStoreWater = true,
CanStoreWater = true,
StaticModel = RemouladeJar,
StaticModel = RemouladeJar,
WorldStaticModel = RemouladeEmpty_Ground,
WorldStaticModel = RemouladeEmpty_Ground,
}
}  
</pre>
}}
}}


==Trivia==
==Trivia==
*The ''RJ'' on the model refers to French developer, [[Romain Dron|Romain 'RJ' Dron]], a developer at [[The Indie Stone]] who originally added remoulade as part of his [[farming]] mod in 2012, before joining the team and adding it into the base game (along with most of the mod).
*The ''RJ'' on the model refers to French developer, [[Romain Dron|Romain 'RJ' Dron]], a developer at [[The Indie Stone]] who originally added remoulade as part of his [[farming]] mod in 2012, before joining the team and adding it into the base game (along with most of the mod).
*<code>TZ_</code> prefix in the icon name indicates it was created by [[User:Thuztor|Thuztor]], a modder responsible for the art in the farming mod, before being added to the base game. There are many textures created by Thuztor still in the game, such as the [[mayonnaise]] icon.


==See also==
==See also==
Line 79: Line 90:
*[[Water Bottle (Mayonnaise)]]
*[[Water Bottle (Mayonnaise)]]


{{Navbox equipment}}
{{Navbox equipment|containers}}
{{Navbox food}}
{{Navbox food}}

Revision as of 01:59, 25 March 2024

Project ZomboidItemsFoodDrinksWater containersWater Bottle (Remoulade)
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
JarLid Remoulade Model.png
Water Bottle
Remoulade Remoulade
General
Category
Empty: Water Container
Full: Water
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.1
Full: 0.5
Function
Molotov Cocktail
Smashed Bottle
• Water storage
Properties
Capacity
6.25 units
Technical
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

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

TZ RemouladeWFull.png Water Bottle
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
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,
	}

TZ RemouladeEmpty.png Empty Bottle
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
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,
	}

Trivia

  • The RJ on the model refers to French developer, Romain 'RJ' Dron, a developer at The Indie Stone who originally added remoulade as part of his farming mod in 2012, before joining the team and adding it into the base game (along with most of the mod).
  • TZ_ prefix in the icon name indicates it was created by Thuztor, a modder responsible for the art in the farming mod, before being added to the base game. There are many textures created by Thuztor still in the game, such as the mayonnaise icon.

See also