Watering Can: Difference between revisions

From PZwiki
m (Automated Formatting)
(Add distribution table(s))
Line 30: Line 30:


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|WateredCan|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>WateredCan distribution
        <span class="mw-customtoggle-togglebox-WateredCan" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-WateredCan">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|crate}}
    | 1
    | 0.6
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 6.0
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 10.0
    |-
    | gardenstore
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | gardenstore
    | {{ll|metal_shelves}}
    | 4
    | 10.0
    |-
    | generalstore
    | {{ll|metal_shelves}}
    | 4
    | 6.0
    |-
    | toolstorestorage
    | {{ll|metal_shelves}}
    | 4
    | 6.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-WateredCan" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|WateredCan|41.78.16-->
It can be found in garages, crates, and sheds.
It can be found in garages, crates, and sheds.



Revision as of 03:26, 25 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing (green) 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Watering Can
Empty Watering Can
Watering Can with Water
General
Category
Gardening
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 2.0
Full: 4.0
Function
Cooking utensil
Properties
Contents
Water
Capacity
40 units
Can boil water
False
Rain factor
0.2
Technical
Item ID
farming.WateredCan
farming.WateredCanFull
Contents can only be purified in a microwave.
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. It can be placed on the ground to fill with rain water.

Farming

Main article: Farming

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

Distribution

The loot distributions can be found in the table(s) below.

WateredCan distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all crate 1 0.6
closet crate 4 6.0
closet crate 4 10.0
gardenstore counter 4 10.0
gardenstore metal_shelves 4 10.0
generalstore metal_shelves 4 6.0
toolstorestorage metal_shelves 4 6.0

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

Trivia

  • Is has unused WateringCan.png icon that is still referenced in the code.

Gallery

Code

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

TZ WateringCan.png farming.WateredCan
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item WateredCan
	{
	    DisplayCategory = Gardening,
		Type				=		Normal,
		DisplayName			=		Watering Can,
		Icon				=		TZ_WateringCan,
		Weight				=		2.0,
    	ReplaceOnUseOn  	=		WaterSource-WateredCanFull,
		CanStoreWater		=		true,
        RainFactor = 0.2,
		Tooltip = Tooltip_item_RainFromGroundOnlyPurifyMicrowave,
        StaticModel = WateringCan,
        WorldStaticModel = WateringCanGround,
        SurvivalGear = TRUE,
	}

TZ WateringCan.png farming.WateredCanFull
Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item WateredCanFull
	{
	    DisplayCategory = Water,
		Type				=		Drainable,
		DisplayName			=		Watering Can (Full),
		/*Icon				=		WateringCan,*/
		Icon				=		TZ_WateringCan,
		Weight				=		4.0,
    	UseDelta			=		0.025,
	    UseWhileEquipped	=	    false,
    	ReplaceOnUseOn 		= 		WaterSource-WateredCanFull,
    	ReplaceOnDeplete 	= 		WateredCan,
    	IsWaterSource		=		true,
		CanStoreWater		=		true,
		FillFromDispenserSound = GetWaterFromDispenserPlasticBig,
		FillFromTapSound = GetWaterFromTapPlasticBig,
		/*IsCookable	=	TRUE,*/
        RainFactor = 0.2,
		Tooltip = Tooltip_item_RainFromGroundOnlyPurifyMicrowave,
        StaticModel = WateringCan,
        WorldStaticModel = WateringCanGround,
        EatType = WateringCan,
	}

See also