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 hold up to 10 units of water.

Prior to build 41, it held 40 units of water – equal to the watering can, which has the highest water capacity in the game.

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 Ingredients Tools Requirements Workstation XP
TZ GardeningSprayCan.png
Insecticide Spray
TZ GardeningSprayCan.png Gardening Spray Can (Empty) ×1
WaterDrop.png Water ×3 unit(s)
IckySticks.png Cigarettes ×5
none
Profession farmer2.png
Farmer occupation
(or)
MagazineFish.png
The Farming Magazine
none none
TZ GardeningSprayCan.png
Mildew Spray
TZ GardeningSprayCan.png Gardening Spray Can (Empty) ×1
Milk.png Milk ×1
none
Profession farmer2.png
Farmer occupation
(or)
MagazineFish.png
The Farming Magazine
none none

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