Cooking Pot: Difference between revisions

From PZwiki
m (Vaileasys moved page Cooking Pot to Cooking Pot: official display name)
m (Automated Formatting)
(39 intermediate revisions by 12 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Food|Drinks|Water containers}}
{{languages}}
{{Page version|41.78.16}}
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
{{Infobox item
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 36.4'''    </div><!-- Code for Version Tag at top -->
|name=Cooking Pot
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Consumables|Consumables]] -> [[:Category:Food|Food]] -> [[:Category:Drinks|Drinks]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|model=CookingPot_Model.png
|icon=Pot.png
|icon_name=Cooking Pot
|model2=CookingPot_Water_Model.png
|icon2=Pot_Water.png
|icon_name2=Cooking Pot with Water
|category=Cooking
|weight=1
|weight_full=3
|function=[[Cooking]] utensil
|max_units=0.04
|contents=Water
|can_boil_water=True
|rain_factor=1
|metal_value=40
|tag=HasMetal
|item_id=Base.Pot
|item_id2=Base.WaterPot
}}
{{Quote|text=Can be used to collect rainwater when placed on the ground outside|author=In-game tooltip}}
A '''cooking pot''' is a [[water]] container used in [[cooking]].
 
==Usage==
===Water storage===
A cooking pot can be filled with water from a [[water|water source]], producing a '''cooking pot with water'''. To fill a cooking pot: Right-click on a water source and "Refill Cooking Pot". 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 [[Thirst|thirst]]. However, cooking pots are significantly heavier than standard water bottles.
 
A cooking pot can be used to purify [[Water#Tainted water|tainted water]], which is dirty water found in unsanitary sources, such as a lake or [[rain]].


{{Tools
===Cooking===
|image = Pot_Water.png
{{Main|Cooking}}
|primaryuse = Holding water
A cooking pot is one of the most useful cooking implements, as it can be used for multiple recipes, such as: cooking [[rice]] and [[pasta]], which can then be used to prepare [[Recipe_Ingredients#Rice &amp; Pasta Ingredients|custom-made meals]], along with the preparation of [[Recipe_Ingredients#Soup &amp; Stew Ingredients|custom-made soup and stew]].
|otheruses = Cooking [[Rice]] or [[Pasta]]
 
|weight = 3.0 when holding water
===First aid===
{{Main|First Aid}}
Water can be heated in a cooking pot, by placing it inside a [[Heat Source|heat source]], which can then be used to sterilize [[bandage]]s. This is an alternative to using [[Bottle of Disinfectant|disinfectant]] or [[Bourbon|alcohol]].
 
==Crafting==
===Cooking===
{{Main|Cooking}}
{{Crafting/sandbox2
|pot_of_soup_uncooked
|pot_of_soup_uncooked
|cooking_pot_with_pasta
|cooking_pot_with_rice
|fish_sushi
|maki
|cooking_pot_with_rice_cooked
|cooking_pot_with_pasta_cooked
|pot_of_soup
|pot_of_stew
|2bowl_of_rice
|2bowl_of_pasta
|4bowl_of_rice
|4bowl_of_pasta
}}
 
===First aid===
{{Main|First Aid}}
{{Crafting/sandbox2
|bandage_sterilized_bandage
|ripped_sheets_sterilized_rag
}}
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|bakerykitchen
|[[counter]]
|4
|8
|-
|[[counter]]
|4
|1
|-
|departmentstorage
|[[metal_shelves]]
|4
|1
|-
|dinerbackroom
|[[counter]]
|4
|1
|-
|rowspan="4"|druglab
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|2
|-
|[[counter]]
|4
|2
|}Cooking pots can be found in kitchen [[Containers#Counters|counters]] of many houses and restaurants.
 
==Code==
{{CodeBox|[[File:Pot.png]] {{ID|Pot}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 390
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Pot
{
    DisplayCategory = Cooking,
Weight = 1,
CanStoreWater = TRUE,
Type = Normal,
DisplayName = Cooking Pot,
ReplaceOnUseOn = WaterSource-WaterPot,
Icon = Pot,
MetalValue = 40,
RainFactor = 1,
Tooltip = Tooltip_item_RainFromGround,
StaticModel = CookingPot,
EatType = Pot,
WorldStaticModel = CookingPotGround,
}
}}
{{CodeSnip
  | lang = java
  | line = true
  | start = 2692
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item WaterPot
{
DisplayName = Cooking Pot with Water,
DisplayCategory = Water,
Type = Drainable,
Weight = 3,
Icon = Pot_Water,
CanStoreWater = TRUE,
EatType = Pot,
FillFromDispenserSound = GetWaterFromDispenserMetalBig,
FillFromTapSound = GetWaterFromTapMetalBig,
IsCookable = TRUE,
IsWaterSource = TRUE,
RainFactor = 1,
ReplaceOnDeplete = Pot,
ReplaceOnUseOn = WaterSource-WaterPot,
Tooltip = Tooltip_item_RainFromGround,
UseDelta = 0.04,
UseWhileEquipped = FALSE,
StaticModel = CookingPot,
WorldStaticModel = CookingPotWater_Ground,
Tags = HasMetal,
}
}}
}}
}}


A '''Pot of Water''' is a [[cooking pot]] that has been filled with water using a [[faucet]] or ingame water source. <br>
==See also==
*[[Saucepan]]
*[[Frying Pan]]
*[[Dry Ramen Noodles]]


The pot of water is drunken automatically, just like the other containers of water. The pot of water is heavier than the traditional bottle of water, so it is somewhat less effective.
{{Navbox items|containers}}


To refill a pot of water, one must right click on any device which supplies water (water fountains, taps etc.) and select "Fill pot". This item holds almost 25 [[A Mug of Water|mugs of water]] which can by transferred to other water containers via the context menu.


Tainted water which is stored in a pot from non-house sources can be cooked on a heat source to be purified.
Water cooked on a heat source can be used to sterilize bandages.
<br><br><br><br><br><br><br>
== Code ==
<nowiki>
item WaterPot
IsWaterSource = TRUE,
Weight = 3,
CanStoreWater = TRUE,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.04,
DisplayName = Cooking Pot with Water,
ReplaceOnDeplete = Pot,
ReplaceOnUseOn = WaterSource-WaterPot,
Icon = Pot_Water,
IsCookable = TRUE,
RainFactor = 1,
Tooltip = Tooltip_item_RainFromGround,
</nowiki>


{{Navbox/Consumables}}
[[Category:Cooking tools]]
[[Category:Consumables]]
[[Category:Tools]]
[[Category:Items]]
[[Category:Drinks]]
[[Category:Version 36]]

Revision as of 07:45, 14 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]
Cooking Pot
CookingPot Model.png
CookingPot Water Model.png
General
Category
Cooking
Encumbrance
Moodle Icon HeavyLoad.png
1 (empty)
3 (full)
Function
Cooking utensil
Properties
Contents
Water
Capacity
25 units
Can boil water
True
Rain factor
1
Technical
Tags
Item ID
Base.Pot
Base.WaterPot
Can be used to collect rainwater when placed on the ground outside
— In-game tooltip

A cooking pot is a water container used in cooking.

Usage

Water storage

A cooking pot can be filled with water from a water source, producing a cooking pot with water. To fill a cooking pot: Right-click on a water source and "Refill Cooking Pot". 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, cooking pots are significantly heavier than standard water bottles.

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

Cooking

Main article: Cooking

A cooking pot is one of the most useful cooking implements, as it can be used for multiple recipes, such as: cooking rice and pasta, which can then be used to prepare custom-made meals, along with the preparation of custom-made soup and stew.

First aid

Main article: First Aid

Water can be heated in a cooking pot, by placing it inside a heat source, which can then be used to sterilize bandages. This is an alternative to using disinfectant or alcohol.

Crafting

Cooking

Main article: Cooking
Product Ingredients Tools Requirements Workstation XP
PotFull.png
Pot of Soup (Uncooked)
One of:
CannedMushroomSoup.png Canned Mushroom Soup ×1
Soup.png Canned Vegetable Soup ×1
CanOpener.png
Can Opener
none none none
PotFull.png
Pot of Soup (Uncooked)
One of:
CannedMushroomSoup.png Canned Mushroom Soup ×1
Soup.png Canned Vegetable Soup ×1
CanOpener.png
Can Opener
none none none
Pot Water.png
Recipe ingredients
Pot.png Cooking Pot ×1
WaterDrop.png Water ×25 unit(s)
SpagettiRaw.png Pasta ×10 unit(s)
none none none none
Pot Water.png
Recipe ingredients
Pot.png Cooking Pot ×1
WaterDrop.png Water ×25 unit(s)
RiceRaw.png Rice ×10 unit(s)
none none none none
SushiFish.png
Fish Sushi
One of:
Pot Water.png Recipe ingredients ×5 unit(s)
SaucepanFilled.png Recipe ingredients ×5 unit(s)
One of:
FishFillet.png Fish Fillet ×5 unit(s)
Salmon.png Salmon ×5 unit(s)
none none none 0.75 Cooking
Maki.png
Maki
One of:
Pot Water.png Recipe ingredients ×2 unit(s)
SaucepanFilled.png Recipe ingredients ×2 unit(s)
One of:
FishFillet.png Fish Fillet ×2 unit(s)
Salmon.png Salmon ×2 unit(s)
Each of:
Seaweed.png Seaweed ×1
Avocado.png Avocado ×2 unit(s)
none none none 0.75 Cooking
Pot Water.png
Cooking Pot with Rice (Cooked)
Pot Water.png Cooking Pot with Rice (Uncooked) ×1 none none Heat source.gif
Heat source
2.5 Cooking
Pot Water.png
Cooking Pot with Pasta (Cooked)
Pot Water.png Cooking Pot with Pasta (Uncooked) ×1 none none Heat source.gif
Heat source
2.5 Cooking
PotFull.png
Pot of Soup
Pot Water.png Cooking Pot ×1
Soup Ingredients.png Soup Ingredients ×(1−6)
none none none 0.75 Cooking
PotFull.png
Pot of Stew
Pot Water.png Cooking Pot ×1
Soup Ingredients.png Stew Ingredients ×(1−6)
none none none 0.75 Cooking
FriedRice.png
Bowl of Rice ×2
Bowl.png Bowl ×2
Pot Water.png Cooking Pot with Rice ×1
none none none none
FriedRice.png
Bowl of Pasta ×2
Bowl.png Bowl ×2
Pot Water.png Cooking Pot with Pasta ×1
none none none none
FriedRice.png
Bowl of Rice ×4
Bowl.png Bowl ×4
Pot Water.png Cooking Pot with Rice ×1
none none none none
FriedRice.png
Bowl of Pasta ×4
Bowl.png Bowl ×4
Pot Water.png Cooking Pot with Pasta ×1
none none none none

First aid

Main article: First Aid
Product Ingredients Tools Requirements Workstation XP
Bandage.png
Sterilized Bandage
One of:
Alcohol.png Bottle of Disinfectant ×3 unit(s)
WhiskeyFull.png Bourbon ×10 unit(s)
Pot Water.png Cooking Pot ×1
SaucepanEmpty.png Saucepan ×1
Each of:
Bandage.png Bandage ×1
none none none none
Rag.png
Sterilized Rag
One of:
Alcohol.png Bottle of Disinfectant ×3 unit(s)
WhiskeyFull.png Bourbon ×10 unit(s)
Pot Water.png Cooking Pot ×1
SaucepanEmpty.png Saucepan ×1
Each of:
Rag.png Ripped Sheets ×1
none none none none

Distribution

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

Containers
Building/Room Container Rolls Chance
bakerykitchen counter 4 8
counter 4 1
departmentstorage metal_shelves 4 1
dinerbackroom counter 4 1
druglab counter 4 1
counter 4 1
counter 4 2
counter 4 2

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

Code

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

Pot.png Pot
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Pot
	{
	    DisplayCategory = Cooking,
		Weight	=	1,
		CanStoreWater	=	TRUE,
		Type	=	Normal,
		DisplayName	=	Cooking Pot,
		ReplaceOnUseOn	=	WaterSource-WaterPot,
		Icon	=	Pot,
		MetalValue = 40,
		RainFactor = 1,
		Tooltip = Tooltip_item_RainFromGround,
		StaticModel = CookingPot,
		EatType = Pot,
		WorldStaticModel = CookingPotGround,
	}

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterPot
	{
		DisplayName = Cooking Pot with Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 3,
		Icon = Pot_Water,
		CanStoreWater = TRUE,
		EatType = Pot,
		FillFromDispenserSound = GetWaterFromDispenserMetalBig,
		FillFromTapSound = GetWaterFromTapMetalBig,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		RainFactor = 1,
		ReplaceOnDeplete = Pot,
		ReplaceOnUseOn = WaterSource-WaterPot,
		Tooltip = Tooltip_item_RainFromGround,
		UseDelta = 0.04,
		UseWhileEquipped = FALSE,
		StaticModel = CookingPot,
		WorldStaticModel = CookingPotWater_Ground,
		Tags = HasMetal,
	}

See also