Watering Can: Difference between revisions

From PZwiki
mNo edit summary
(Redesigned page, +Navbar, changed description, +code, +relevant categories)
Line 1: Line 1:
{{languages}}
__NOTOC__
{{notice|short}}
{{languages|Watering 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 = Watering 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}}|Watering Can]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|primaryuse = Farming
{{Items
|otheruses = ?
|image = TOOLWateringCan.png
|weight = 2.0 or 4.0
|weight = 2.0 or 4.0
}} <!--/infobox-->
}}
A can used to store water to water crops.
 
The watering can is a tool required to water plants while [[Farming|farming]].  The [[Gardening_Spray_Can|gardening spray can]] is an alternative to the watering can. It can hold the equivalent of 40 [[A Mug of Water|mugs of water]].
 
<!-- Please edit this section if the watering can is used in any crafting recipes.
== Crafting ==
 
Watering Can can be used in the following recipes:


{| class="wikitable" width="550" style="text-align:center;"
'''A Watering Can''' is a large watering container used to water crops. It can be found in garages, crates, and sheds.
|-
<br><br>
! Ingredients || Other Items || Output || Description
When full of water, their weight doubles to 4.0 making it a considerably heavy item.
|-
<br><br>
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
See [[Farming]] for further information on farming, and see [[Water]] for water storage comparisons.
|}
-->


== Code ==
''Full Watering Can'' [[File:TOOLWateringCan.png]]
<nowiki>
    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
</nowiki>
''Empty Watering Can'' [[File:TOOLWateringCan.png]]
<nowiki>
    item WateredCan
Type = Normal,
DisplayName = Watering Can,
Icon = TZ_WateringCan,
Weight = 2.0,
    ReplaceOnUseOn  = WaterSource-WateredCanFull,
CanStoreWater = true
}
</nowiki>
   
{{Navbox/Tools}}
[[Category:Farming]]
[[Category:Tools]]
[[Category:Tools]]
[[Category:Items]]
[[Category:Version 34.28]]

Revision as of 20:48, 29 August 2016


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

Template:Items

A Watering Can is a large watering container used to water crops. It can be found in garages, crates, and sheds.

When full of water, their weight doubles to 4.0 making it a considerably heavy item.

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

Code

Full Watering Can File:TOOLWateringCan.png

	
    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
 

Empty Watering Can File:TOOLWateringCan.png

	
    item WateredCan
		Type			= Normal,
		DisplayName		= Watering Can,
		Icon			= TZ_WateringCan,
		Weight			= 2.0,
    		ReplaceOnUseOn  	= WaterSource-WateredCanFull,
		CanStoreWater		= true
	}
 
    

Template:Navbox/Tools