Gardening Spray Can: Difference between revisions

From PZwiki
(Redesigned page, +Navbar, changed description,+crafting, +code, +relevant categories)
Line 1: Line 1:
{{languages}}
__NOTOC__
{{notice|short}}
{{languages|Gardening_Spray_Can}}
 
<div class="header" style="margin: 5px; align: right; background: #C3E4ED; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #9AC0CD"> <!-- Code for Background Colour -->
{{tools
<div style="float: right;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
|image = Gardening spray can.png  
<div style="float: left;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Farming|Farming]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|primaryuse = Farming
{{Items
|otheruses = Water storage
|image = Gardening spray can.png
|weight = 0.3 or 1.0
|weight = 0.3 or 1.0
}} <!--/infobox-->
}}
 
The main use of the gardening spray can is to create sprays, which are used to combat [[Farming#Plant_Disease_Problems|mildew]] or [[Farming#Plant_Disease_Problems|pest flies]] on a player's crops.
 
The gardening spray can also be used to water plants while [[Farming|farming]].  The [[Watering_Can|watering can]] is an alternative to the gardening spray can. It can hold the equivalent of 40 [[A Mug of Water|mugs of water]].
 


 
'''A Gardening Spray Can''' is a watering container used to water crops or to make pesticides. It can be found in garages, crates, and sheds.
== Crafting ==
<br><br>
 
See [[Farming]] for further information on farming, and see [[Water]] for water storage comparisons.
Gardening Spray Can can be used in the following recipes:
<br><br><br>
== Making Plant Disease Cures ==


As of Build 32, you either need the gardening trait or the farmer profession to craft these items.
As of Build 32, you either need the gardening trait or the farmer profession to craft these items.
 
{| class="wikitable sortable" style="text-align:center;"
|-
! Output
! class="unsortable" | Ingredients
! class="unsortable" | Description
! Level
{{RecipeLookup|5016}}
{{RecipeLookup|5017}}
|}
{| class="wikitable sortable" style="text-align:center;"
{| class="wikitable sortable" style="text-align:center;"
|-  
|-  
Line 35: Line 39:
|}
|}


 
== Code ==
''Full Watering Can'' [[File:Gardening spray can.png]]
<nowiki>
    item GardeningSprayFull
Type = Drainable,
DisplayName = Gardening Spray Can (Full),
Icon = TZ_GardeningSprayCan,
Weight = 1.0,
    UseDelta = 0.025,
    ReplaceOnUseOn = WaterSource-GardeningSprayFull,
    ReplaceOnDeplete = GardeningSprayEmpty,
    IsWaterSource = true,
CanStoreWater = true,
UseWhileEquipped = false,
</nowiki>
''Empty Watering Can'' [[File:Gardening spray can.png]]
<nowiki>
    item GardeningSprayEmpty
  Type = Normal,
  DisplayName = Gardening Spray Can (Empty),
  Icon = TZ_GardeningSprayCan,
  Weight = 0.3,
  ReplaceOnUseOn  = WaterSource-GardeningSprayFull,
CanStoreWater = true,
</nowiki>
   
{{Navbox/Tools}}
[[Category:Farming]]
[[Category:Tools]]
[[Category:Tools]]
[[Category:Items]]
[[Category:Version 34.28]]

Revision as of 21:16, 29 August 2016


Page Updated @ Version: 34.28
   Navigation - Main Index -> The Game World -> Items -> Farming -> Gardening Spray Can   

Template:Items

A Gardening Spray Can is a watering container used to water crops or to make pesticides. It can be found in garages, crates, and sheds.

See Farming for further information on farming, and see Water for water storage comparisons.


Making Plant Disease Cures

As of Build 32, you either need the gardening trait or the farmer profession to craft these items.

Output Ingredients Description Level
























Item Description
File:Gardening spray can.png

Mildew Spray

Mildew causes your plants to mature more slowly. Treat affected plants with Mildew Spray to counteract this. With a Gardening Spray Can and a Milk in main inventory, right click on either item to show the option to 'Create Mildew Cure.' Note: even Rotten Milk can be used to make Mildew Spray, so do not trash it if you are growing plants.
File:Gardening spray can.png

Insecticide Spray

Pest Flies cause a growing plant to consume more water; affected plants will need considerably more water and attention. To cure this, make 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.'

Code

Full Watering Can File:Gardening spray can.png

	
    item GardeningSprayFull
		Type			= Drainable,
		DisplayName		= Gardening Spray Can (Full),
		Icon			= TZ_GardeningSprayCan,
		Weight			= 1.0,
    		UseDelta		= 0.025,
    		ReplaceOnUseOn 		= WaterSource-GardeningSprayFull,
    		ReplaceOnDeplete 	= GardeningSprayEmpty,
    		IsWaterSource		= true,
		CanStoreWater		= true,
		UseWhileEquipped	= false,
 

Empty Watering Can File:Gardening spray can.png

	
    item GardeningSprayEmpty
   		Type 			= Normal,
   		DisplayName 		= Gardening Spray Can (Empty),
   		Icon 			= TZ_GardeningSprayCan,
   		Weight 			= 0.3,
   		ReplaceOnUseOn  	= WaterSource-GardeningSprayFull,
		CanStoreWater		= true,
 
    

Template:Navbox/Tools