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

Watering Can

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Watering Can
WateringCan Model.png
WateringCan Model.png
General
Category
Gardening
Encumbrance
Moodle Icon HeavyLoad.png
2 (empty)
4 (full)
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.

Location

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

WateredCan distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average 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. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
all crate 0.89%
closet crate 23.67%
closet crate 15.52%
factory crate 15.52%
factory metal_shelves 15.52%
Farmer crate 15.52%
Farmer metal_shelves 15.52%
farmstorage crate 15.52%
farmstorage metal_shelves 15.52%
garagestorage crate 23.67%
garagestorage crate 15.52%
gardenstore counter 23.67%
gardenstore metal_shelves 23.67%
gardenstore shelves 23.67%
generalstore metal_shelves 15.52%
generalstore shelves 15.52%
generalstorestorage metal_shelves 15.52%
generalstorestorage shelves 15.52%
gigamart shelves 15.52%
producestorage metal_shelves 23.67%
shed crate 15.52%
storageunit crate 23.67%
storageunit crate 15.52%
storageunit metal_shelves 15.52%
toolstore metal_shelves 15.52%
toolstore shelves 15.52%
toolstorestorage metal_shelves 15.52%
warehouse crate 15.52%
warehouse metal_shelves 15.52%

Trivia

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

Gallery

History

farming.WateredCan

Version Description
Build 41.78 Tooltip changed from Tooltip_item_RainFromGround to Tooltip_item_RainFromGroundOnlyPurifyMicrowave.
Build 41.65 DisplayCategory added with value Gardening.
Build 41.54 WorldStaticModel added with value WateringCanGround.
Build 41.23 SurvivalGear added with value TRUE.
Build 41.12 StaticModel added with value WateringCan.
Build 36.4 RainFactor added with value 0.2.
Tooltip added with value Tooltip_item_RainFromGround.
RC2.9 - Build 0007 Released on this version.

farming.WateredCanFull

Version Description
Build 41.78.10 IsCookable removed.
Build 41.78 Icon changed from WateringCan to TZ_WateringCan.
Tooltip changed from Tooltip_item_RainFromGround to Tooltip_item_RainFromGroundOnlyPurifyMicrowave.
Build 41.66 FillFromDispenserSound added with value GetWaterFromDispenserPlasticBig.
FillFromTapSound added with value GetWaterFromTapPlasticBig.
Build 41.65 DisplayCategory added with value Water.
Icon changed from TZ_WateringCan to WateringCan.
Build 41.54 WorldStaticModel added with value WateringCanGround.
Build 41.30 EatType added with value WateringCan.
Build 41.12 StaticModel added with value WateringCan.
Build 36.4 IsCookable added with value TRUE.
RainFactor added with value 0.2.
Tooltip added with value Tooltip_item_RainFromGround.
RC2.9.9.10 Weight changed from 12.0 to 4.0.
RC2.9 - Build 0007 Released on this version.

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