Gardening Spray Can

From PZwiki
(Redirected from Gardening Spray Can)
Project ZomboidItemsEquipmentToolsFarming toolsGardening Spray Can
Spiffo controlyourself.png
This page was last updated for an older version (41.65).
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.
Gardening Spray Can
GardenSpray Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.3
Full: 1.0
Function
Cooking utensil
Properties
Contents
Water
Capacity
10 units
Can boil water
False
Rain factor
0.2
Technical
Item ID
farming.GardeningSprayEmpty
farming.GardeningSprayFull

A gardening spray can is a water container used in farming.

Usage

Water storage

The gardening spray can be used to have the highest water capacity, holding up to 40 units of water, which is equal to the watering can.

As of build 41, this is no longer the case and now holds 10 units of water.

Farming

Main article: Farming

Pesticides

A gardening spray can is required to make pesticides.

Mildew Spray
Mildew causes plants to mature slower. Affected plants can be treated with mildew spray to counteract this. With a gardening spray can and milk (fresh or rotten) in the main inventory, right-click on either item to show the option to "Create Mildew Cure".
Insecticide Spray
Pest flies cause a growing plant to consume more water; affected plants will need considerably more water and attention. This can be cured by making an insecticide spray by placing a gardening spray can, five cigarettes and three units of water in your main inventory; right-click on an ingredient to show the option "Create Flies Cure".

Crafting

Making pesticides

Either the gardening trait or the farmer occupation is required to craft these items.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
TZ GardeningSprayCan.png
Insecticide Spray
0 XP none Farmer
OR
MagazineFish.png
Gardening Spray Can (Empty)
Gardening Spray Can (Empty)
(consumed)
WaterDrop.png
Water (3 units)
(consumed)
IckySticks.png
Cigarettes x5
(consumed)
TZ GardeningSprayCan.png
Mildew Spray
0 XP none Farmer
OR
MagazineFish.png
Gardening Spray Can (Empty)
Gardening Spray Can (Empty)
(consumed)
Milk.png
Milk
(consumed)

Distribution

Only empty gardening spray cans can be found in the world, inside garages, crates, sheds and rare chances of being found in a kitchen and in the bodies of former farmers who succumbed to the Knox infection.

Code

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

TZ GardeningSprayCan.png farming.GardeningSprayEmpty
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item GardeningSprayEmpty
  	{
  	    DisplayCategory = Gardening,
   		Type 				= 		Normal,
   		DisplayName 		= 		Gardening Spray Can (Empty),
   		Icon 				= 		TZ_GardeningSprayCan,
   		Weight 				= 		0.3,
   		ReplaceOnUseOn  	=		WaterSource-GardeningSprayFull,
		CanStoreWater		=		true,
		StaticModel = GardenSpray,
		WorldStaticModel = GardenSprayGround,
		SurvivalGear = TRUE,
  	}

TZ GardeningSprayCan.png farming.GardeningSprayFull
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item GardeningSprayFull
	{
	    DisplayCategory = Gardening,
		Type				=		Drainable,
		DisplayName			=		Gardening Spray Can (Full),
		Icon				=		TZ_GardeningSprayCan,
		Weight				=		1.0,
    	UseDelta			=		0.1,
    	ReplaceOnUseOn 		= 		WaterSource-GardeningSprayFull,
    	ReplaceOnDeplete 	= 		GardeningSprayEmpty,
    	IsWaterSource		=		true,
		CanStoreWater		=		true,
		FillFromDispenserSound = GetWaterFromDispenserPlasticMedium,
		FillFromTapSound = GetWaterFromTapPlasticMedium,
		UseWhileEquipped	=	    false,
		StaticModel = GardenSpray,
		WorldStaticModel = GardenSprayGround,
		Tooltip = Tooltip_item_OnlyPurifyMicrowave,
	}

See also