Kettle: Difference between revisions

From PZwiki
m (changed see also link)
(PZ Updater automated execution(task: deploy ReLookup, eid: 64ffa41ce12c45101db90ccf9c660146))
Line 30: Line 30:
===Cooking===
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
{{Cooking table header}}
{{Crafting header|ing=5}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2003 -->
{{RecipeLookup|2003}}
{{Crafting/core|ing=5
{{Crafting table footer}}
| product_image = [[File:MugFulll.png|link=Hot Cuppa|Hot Cuppa]] | product_name = [[Hot Cuppa]] | product_quantity = x1
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:InstantCoffee.png]] | i1 = [[Tea Bag]]<br>or<br>[[Coffee]] | q1 = (2 units) | tag1 = (consumed)
| f2 = [[File:Kettle.png]] | i2 = [[Kettle|Kettle of Water]] | q2 = (2 units)
| f3 = [[File:Mugl.png|link=Empty Mug|Empty Mug]] | i3 = [[Empty Mug]] | q3 = x1 | tag3 = (consumed)
| f4 = [[File:Sugar.png|link=Sugar|Sugar]] | i4 = [[Sugar]] | q4 = (1 unit) | tag4 = (consumed)
| f5 = [[File:Heat_source.gif|link=Heat Source|Heat Source]] | i5 = [[Heat Source]] | q5 =  | tag5 = (heat: -0.22) |opt5=1
}}
|}
 


== Code ==
== Code ==

Revision as of 04:06, 26 March 2022

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 Ingredient 5
Hot Cuppa
Hot Cuppa x1
none InstantCoffee.png
Tea Bag
or
Coffee (2 units)
(consumed)
Kettle.png
Kettle of Water (2 units)
Empty Mug
Mug x1
(consumed)
Sugar
Sugar (1 unit)
(consumed)
Heat Source
Heat source
(heat: -0.22)


Code

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

Kettle Kettle.png Retrieved: Build 40.9

	item Kettle
		Weight		= 1,
		CanStoreWater	= TRUE,
		Type		= Normal,
		DisplayName	= Kettle,
		ReplaceOnUseOn	= WaterSource-FullKettle,
		Icon		= Kettle,
		MetalValue 	= 30,

Kettle of Water Kettle.png Retrieved: Build 40.9

	item FullKettle
		IsWaterSource		= TRUE,
		Weight			= 2,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.07,
		DisplayName		= Kettle of Water,
		ReplaceOnDeplete	= Kettle,
		ReplaceOnUseOn		= WaterSource-FullKettle,
		Icon			= Kettle,
		IsCookable		= TRUE,

See also

Template:Navbox/ToolsTemplate:Navbox/Consumables