Kettle

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Kettle
Kettle Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 1
Full: 2
Function
Cooking utensil
Properties
Contents
Water
Capacity
14.3 units
Can boil water
True
Rain factor
0.5
Technical
Item ID
Base.Kettle
Base.FullKettle

A kettle is a water container used in cooking.

Usage

Water storage

A kettle can be filled with water from a water source, producing a kettle of water. To fill a kettle: Right-click on a water source and "Refill Kettle". It can hold the equivalent of almost 14 mugs of water. It is an alternative storage space for water to water bottles, and is automatically drunk by the player to satiate thirst. However, kettles are significantly heavier than standard water bottles. It can be used to water plants while farming.

A kettle can be used to purify tainted water, which is dirty water gained from unsanitary sources; such as a lake or rain. This is done by putting the kettle with tainted water over a heat source.

Cooking

The full kettle used to be used to craft a hot cuppa or cold cuppa, however it is no longer used in cooking.

Crafting

Cooking

BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.
Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
MugFulll.png
Hot CuppaRemoved
0 XP none Mugl.png
Mug
(consumed)
Kettle.png
Kettle
(2 units)

(Heat: -0.22)
One of:
Teabag.png Tea Bag
InstantCoffee.png Coffee

(consumed)
Sugar.png
Sugar
(1 unit)
Cold Cuppa
Cold CuppaRemoved
0 XP none Mugl.png
Mug
(consumed)
Kettle.png
Kettle
(2 units)

(Heat: 1.0)
One of:
Teabag.png Tea Bag
InstantCoffee.png Coffee

(consumed)
Sugar.png
Sugar
(1 unit)

Code

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

Kettle.png Base.Kettle
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Kettle
{
    DisplayCategory    = Cooking,
    Weight             = 1,
    CanStoreWater      = TRUE,
    Type               = Normal,
    DisplayName        = Kettle,
    ReplaceOnUseOn     = WaterSource-FullKettle,
    Icon               = Kettle,
    MetalValue         = 30,
    StaticModel        = Kettle,
    WorldStaticModel   = KettleGround,
    CustomEatSound     = DrinkingFromGeneric,
    Tags               = CoffeeMaker,
}


Kettle.png Base.FullKettle
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item FullKettle
	{
	    DisplayCategory = Water,
		IsWaterSource	=	TRUE,
		Weight	=	2,
		CanStoreWater	=	TRUE,
		FillFromDispenserSound = GetWaterFromDispenserMetalBig,
		FillFromTapSound = GetWaterFromTapMetalBig,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.07,
		DisplayName	=	Kettle of Water,
		ReplaceOnDeplete	=	Kettle,
		ReplaceOnUseOn	=	WaterSource-FullKettle,
		Icon	=	Kettle,
		IsCookable	=	TRUE,
		StaticModel = Kettle,
		EatType = Kettle,
		WorldStaticModel = KettleGround,
		Tags = CoffeeMaker;HasMetal,
	}

See also