Watering Can

From PZwiki
(Redirected from Watering Can)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing (green) 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Watering Can
Empty Watering Can
Watering Can with Water
General
Category
Gardening
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 2.0
Full: 4.0
Function
Cooking utensil
Properties
Contents
Water
Capacity
40 units
Can boil water
False
Rain factor
0.2
Technical
Item ID
farming.WateredCan
farming.WateredCanFull
Contents can only be purified in a microwave.
Can be used to collect rainwater when placed on the ground outside.
— In-game tooltip

A watering can is a water container used in farming.

Usage

Water storage

A watering can can be filled with up to 40 units of water. It can be placed on the ground to fill with rain water.

Farming

Main article: Farming

Due to its large storage capacity, the watering can is ideal for watering crops.

Distribution

The loot distributions can be found in the table(s) below.

WateredCan distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
Farmer crate 15.1%
Farmer metal_shelves 15.1%
closet crate 15.1%
closet crate 23.28%
factory crate 15.1%
factory metal_shelves 15.1%
farmstorage crate 15.1%
farmstorage metal_shelves 15.1%
garagestorage crate 15.1%
garagestorage crate 23.28%
gardenstore counter 23.28%
gardenstore metal_shelves 23.28%
gardenstore shelves 23.28%
generalstore metal_shelves 15.1%
generalstore shelves 15.1%
generalstorestorage metal_shelves 15.1%
generalstorestorage shelves 15.1%
gigamart shelves 15.1%
producestorage metal_shelves 23.28%
shed crate 15.1%
storageunit crate 15.1%
storageunit crate 23.28%
storageunit metal_shelves 15.1%
toolstore metal_shelves 15.1%
toolstore shelves 15.1%
toolstorestorage metal_shelves 15.1%
warehouse crate 15.1%
warehouse metal_shelves 15.1%

It can be found in garages, crates, and sheds.

Trivia

  • Is has unused WateringCan.png icon that is still referenced in the code.

Gallery

Code

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

TZ WateringCan.png farming.WateredCan
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item WateredCan
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Watering Can,
		Icon				=		TZ_WateringCan,
		Weight				=		2.0,
    	ReplaceOnUseOn  	=		WaterSource-WateredCanFull,
		CanStoreWater		=		true,
        RainFactor = 0.2,
		Tooltip = Tooltip_item_RainFromGroundOnlyPurifyMicrowave,
        StaticModel = WateringCan,
        WorldStaticModel = WateringCanGround,
        SurvivalGear = TRUE,
	}

TZ WateringCan.png farming.WateredCanFull
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item WateredCanFull
	{
	    DisplayCategory = Water,
		Type				=		Drainable,
		DisplayName			=		Watering Can (Full),
		/*Icon				=		WateringCan,*/
		Icon				=		TZ_WateringCan,
		Weight				=		4.0,
    	UseDelta			=		0.025,
	    UseWhileEquipped	=	    false,
    	ReplaceOnUseOn 		= 		WaterSource-WateredCanFull,
    	ReplaceOnDeplete 	= 		WateredCan,
    	IsWaterSource		=		true,
		CanStoreWater		=		true,
		FillFromDispenserSound = GetWaterFromDispenserPlasticBig,
		FillFromTapSound = GetWaterFromTapPlasticBig,
		/*IsCookable	=	TRUE,*/
        RainFactor = 0.2,
		Tooltip = Tooltip_item_RainFromGroundOnlyPurifyMicrowave,
        StaticModel = WateringCan,
        WorldStaticModel = WateringCanGround,
        EatType = WateringCan,
	}

See also