Watering Can

From PZwiki
Revision as of 12:09, 1 September 2018 by Vaileasys (talk | contribs)
The Game WorldItemsToolsWatering Can
Watering Can
Watering Can
Watering Can (Full)
General
Category Item
Encumbrance
Heavy Load
Empty: 2.0
Full: 4.0
Function Cooking utensil
Capacity 40 units
Contents Water
Can boil water False
Rain factor 0.2
Technical details
item ID farming.WateredCan
farming.WateredCanFull
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, equal to that of the gardening spray can. Although it is much heavier than the gardening spray can, the watering can can be filled in the rain. Although it should be boiled first in a separate container as the water is considered tainted.

Farming

Main article: Farming

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

Distribution

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

Code

From farming.txt (Project Zomboid directory/media/scripts/)

Watering Can TZ WateringCan.png Retrieved: Build 40.11

	item WateredCan
		Type			= Normal,
		DisplayName		= Watering Can,
		Icon			= TZ_WateringCan,
		Weight			= 2.0,
    		ReplaceOnUseOn  	= WaterSource-WateredCanFull,
		CanStoreWater		= true,
        	RainFactor 		= 0.2,
        	Tooltip 		= Tooltip_item_RainFromGround,

Watering Can (Full) TZ WateringCan.png Retrieved: Build 40.11

	item WateredCanFull
		Type			= Drainable,
		DisplayName		= Watering Can (Full),
		Icon			= TZ_WateringCan,
		Weight			= 4.0,
    		UseDelta		= 0.025,
	    	UseWhileEquipped	= false,
    		ReplaceOnUseOn 		= WaterSource-WateredCanFull,
    		ReplaceOnDeplete 	= WateredCan,
    		IsWaterSource		= true,
		CanStoreWater		= true,
		IsCookable		= TRUE,
        	RainFactor 		= 0.2,
        	Tooltip 		= Tooltip_item_RainFromGround,

See also

Template:Navbox/Tools