Bottle with Water (Bleach)

From PZwiki
(Redirected from Bottle with Water (Bleach))
Project ZomboidItemsFoodDrinksWater containersBottle with Water (Bleach)
Spiffo controlyourself.png
This page was last updated for an older version (41.51).
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.
Bottle with Water
Bleach Model.png
Bleach
General
Category
Item
Encumbrance
Moodle Icon HeavyLoad.png
1.6 (Full)
0.2 (Empty)
Function
Water storage
Properties
Contents
Capacity
10.0 units
Can boil water
False
Technical
Item ID
Base.WaterBleachBottle
Base.BleachEmpty

A bleach bottle with water, called simply "Bottle with Water" is an item in Project Zomboid caused by filling empty bleach bottle with water.

Usage

Like other water containers, a bleach bottle with water will automatically satiate the player's thirst. Therefore, a bleach bottle with water will gradually lose its contents, and need to be refilled, being replaced with an empty bleach bottle.

The Bottle with Water is significantly worse than the standard water bottles, having double the encumbrance at 1.6 when full and holding 10 units of water, in comparison to a standard bottle's 0.8 encumbrance and 10 unit capacity.

Refilling

Its main purpose is to store water. This can be done by pouring out the contents of a bleach bottle (or drinking) and refilling it from a water source.

Trivia

  • Empty bleach bottles can be found sitting on corpses, suggesting that the Knox Event drove them to suicide.

Gallery

Code

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

Bleach.png Bleach Bottle with Water
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterBleachBottle
	{
		DisplayName = Bleach Bottle With Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 1.6,
		Icon = Bleach,
		CanStoreWater = TRUE,
		FillFromDispenserSound = GetWaterFromDispenserPlasticBig,
		FillFromTapSound = GetWaterFromTapPlasticBig,
		IsWaterSource = TRUE,
		ReplaceOnDeplete = BleachEmpty,
		ReplaceOnUseOn = WaterSource-WaterBleachBottle,
		UseDelta = 0.1,
		UseWhileEquipped = FALSE,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromBottlePlastic,
		StaticModel = BleachBottle,
		WorldStaticModel = BleachBottle,
		Tooltip = Tooltip_item_OnlyPurifyMicrowave,
	}

Bleach.png Empty Bleach Bottle
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item BleachEmpty
    {
        DisplayCategory = WaterContainer,
        Weight	=	0.2,
        CanStoreWater	=	TRUE,
        Type	=	Normal,
        DisplayName	=	Empty Bleach Bottle,
        Icon	=	Bleach,
        ReplaceOnUseOn	=	WaterSource-WaterBleachBottle,
        StaticModel = BleachBottle,
        WorldStaticModel = BleachBottle,
		Tags = EmptyPetrol,
		ReplaceTypes = PetrolSource PetrolBleachBottle;WaterSource WaterBleachBottle,
		Tooltip = Tooltip_item_OnlyPurifyMicrowave,
    }

See also