Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Water Bottle (Remoulade)

From PZwiki
Project ZomboidItemsFoodDrinksWater containersWater Bottle (Remoulade)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Water Bottle
RemouladeEmpty Model.png
Remoulade Model.png
General
Category
Empty: Water Container
Full: Water
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.1
Full: 0.5
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.

Location

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.

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.

History

farming.RemouladeEmpty

Version Description
Build 41.65 DisplayCategory added with value WaterContainer.
Build 41.54 WorldStaticModel added with value RemouladeEmpty_Ground.
Build 41.44 StaticModel added with value RemouladeJar.
Build 34.23 DisplayName changed from Bottle with Remoulade (Empty) to Empty Bottle.
RC2.9.9.17 - Build 0009 Weight changed from 0.6 to 0.1.
RC2.9 - Build 0007 Released on this version.

farming.RemouladeWaterFull

Version Description
Build 41.66 FillFromDispenserSound added with value GetWaterFromDispenserPlasticMedium.
FillFromTapSound added with value GetWaterFromTapPlasticMedium.
Build 41.65 DisplayCategory added with value Water.
Build 41.54 WorldStaticModel added with value Remoulade_Ground.
Build 41.44 StaticModel added with value RemouladeJar.
Build 34.23 DisplayName changed from Water bottle to Water Bottle.
RC2.9.9.17 - Build 0009 ReplaceOnDeplete changed from RemouladeWaterHalf to RemouladeEmpty.
Weight changed from 1.3 to 0.5.
RC2.9 - Build 0007 Released on this version.

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,
	}

See also