Kettle

From PZwiki
Revision as of 10:49, 9 January 2024 by VaileasysBot (talk | contribs) (→‎top: category project: "The Game World")
Kettle
Kettle
Kettle
General
Category Item
Encumbrance
Heavy Load
Empty: 1
Full: 2
Function Cooking utensil
Capacity 14.3 units
Contents Water
Can boil water True
Rain factor 0.5
Technical details
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.

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

A full kettle can be used to craft a hot cuppa or cold cuppa, depending on whether the kettle has been heated first.

Crafting

Cooking

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

From items.txt (Project Zomboid directory/media/scripts/)

Kettle Kettle.png Retrieved: Build 40.9

	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 of Water Kettle.png Retrieved: Build 40.9

	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,
	}

See also