Saucepan: Difference between revisions

From PZwiki
(Added crafted version of saucepan via Recipelookup (Pasta/Rice))
(New infobox + new layout)
Tag: categories removed
Line 1: Line 1:
__NOTOC__
{{languages|Saucepan}}
{{languages|Saucepan}}
<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 -->
{{header|The Game World|Items|Tools|type=Tool|version=Version 40|incver=11}}{{Infobox drainable
<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 -->
|display_name=Saucepan
<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:Tools|Tools]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|name_colour=Tool
{{Consumables
|name_text_colour=Tool
|image = SaucepanEmpty.png
|image=SaucepanEmpty_120px.png
|weight = 0.7
|alternate_image=SaucepanEmpty.png
}}
|alternate_name=Saucepan with Water
|alternate_link=
|weight='''Empty:''' 0.7<br>'''Full:''' 2
|function=[[Cooking]] utensil
|max_units=25
|contents=Water
|can_boil_water=True
|rain_factor=0.8
|class_name=Base.Saucepan<br>Base.WaterSaucepan
}}{{quote|text=Can be used to collect rainwater when placed on the ground outside|author=In-game tooltip}}


'''Saucepans''' are [[items|items]] found in kitchen cupboards of many houses. You can use it to store water and also to cook with rice and pasta. Unlike the [[Frying Pan]] it cannot be used for fighting.
A '''saucepan''' is a [[water]] container used in [[cooking]].
 
==Usage==
===Water storage===
A saucepan can be filled with water from a [[:Category:Water Source|water source]], producing a '''saucepan with water'''. To fill a saucepan: Right-click on a water source and "Refill Saucepan". It can hold the equivalent of 25 [[Empty Mug|mugs of water]]. It is an alternative storage space for water to [[Water Bottle|water bottles]], and is automatically drunk by the player to satiate [[Moodles#Thirst|thirst]]. However, saucepans are significantly heavier than standard water bottles.
 
A saucepan can be used to purify [[Water#Tainted water|tainted water]], which is dirty water found in unsanitary sources, such as a lake or [[rain]].
 
===Cooking===
A full saucepan can be used to cook [[rice]] and [[pasta]], which can be used to prepare [[Recipe_Ingredients#Rice & Pasta Ingredients|custom-made meals]].  


== Crafting ==
== Crafting ==
 
===Cooking===
{| class="wikitable sortable" style="text-align:center;"
{{Main|Cooking}}
|-
{{Cooking table header}}
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
! Crafting Level
{{RecipeLookup|2074}}
{{RecipeLookup|2074}}
{{RecipeLookup|2075}}
{{RecipeLookup|2075}}
|}
{{Crafting table footer}}


==Distribution==
Saucepans can be found in kitchen [[Containers#Counters|counters]] of many houses and restaurants.


== Code ==
== Code ==
<nowiki>
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
item Saucepan
 
''Saucepan'' [[File:SaucepanEmpty.png]]
{{Retrieved|version=40|incver=11}}
<pre> item Saucepan
Weight = 0.7,
Weight = 0.7,
CanStoreWater = TRUE,
CanStoreWater = TRUE,
Line 32: Line 50:
DisplayName = Saucepan,
DisplayName = Saucepan,
ReplaceOnUseOn = WaterSource-WaterSaucepan,
ReplaceOnUseOn = WaterSource-WaterSaucepan,
Icon = SaucepanEmpty,
Icon = SaucepanEmpty,</pre>
</nowiki>
 
''Saucepan with Water'' [[File:SaucepanEmpty.png]]
{{Retrieved|version=40|incver=11}}
<pre> item WaterSaucepan
IsWaterSource = TRUE,
Weight = 2,
CanStoreWater = TRUE,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.04,
DisplayName = Saucepan with Water,
ReplaceOnDeplete = Saucepan,
ReplaceOnUseOn = WaterSource-WaterSaucepan,
Icon = SaucepanEmpty,
IsCookable = TRUE,
RainFactor = 0.8,
Tooltip = Tooltip_item_RainFromGround,</pre>
 
==See also==
*[[Cooking Pot]]
*[[Frying Pan]]
*[[Dry Ramen Noodles]]


{{Navbox/Tools}}
{{Navbox/Tools}}
[[Category:Tools]]
[[Category:Items]]
[[Category:Version 34.28]]

Revision as of 16:44, 31 August 2018

The Game WorldItemsToolsSaucepan
Saucepan
Saucepan
Saucepan with Water
General
Category Item
Encumbrance
Heavy Load
Empty: 0.7
Full: 2
Function Cooking utensil
Capacity 25 units
Contents Water
Can boil water True
Rain factor 0.8
Technical details
item ID Base.Saucepan
Base.WaterSaucepan
Can be used to collect rainwater when placed on the ground outside
— In-game tooltip

A saucepan is a water container used in cooking.

Usage

Water storage

A saucepan can be filled with water from a water source, producing a saucepan with water. To fill a saucepan: Right-click on a water source and "Refill Saucepan". It can hold the equivalent of 25 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, saucepans are significantly heavier than standard water bottles.

A saucepan can be used to purify tainted water, which is dirty water found in unsanitary sources, such as a lake or rain.

Cooking

A full saucepan can be used to cook rice and pasta, which can be used to prepare custom-made meals.

Crafting

Cooking

Main article: Cooking

Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

Saucepans can be found in kitchen counters of many houses and restaurants.

Code

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

Saucepan SaucepanEmpty.png Retrieved: Build 40.11

	item Saucepan
		Weight		= 0.7,
		CanStoreWater	= TRUE,
		Type		= Normal,
		DisplayName	= Saucepan,
		ReplaceOnUseOn	= WaterSource-WaterSaucepan,
		Icon		= SaucepanEmpty,

Saucepan with Water SaucepanEmpty.png Retrieved: Build 40.11

	item WaterSaucepan
		IsWaterSource		= TRUE,
		Weight			= 2,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.04,
		DisplayName		= Saucepan with Water,
		ReplaceOnDeplete	= Saucepan,
		ReplaceOnUseOn		= WaterSource-WaterSaucepan,
		Icon			= SaucepanEmpty,
		IsCookable		= TRUE,
		RainFactor 		= 0.8,
		Tooltip 		= Tooltip_item_RainFromGround,

See also

Template:Navbox/Tools