Cooking Pot: Difference between revisions

From PZwiki
m (Automated {{Languages}} removal.)
m (Automated CodeBox update)
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Header/sandbox2|Project Zomboid|Items|Food|Drinks|Water containers}}
{{Header|Project Zomboid|Items|Food|Drinks|Water containers}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Reupload|Add model for water variant [[File:CookingPotWater_Model.png]]. Mesh: <code>WorldItems/CookingPotFull</code>. Texture: <code>WorldItems/CookingPotWater</code>}}
{{Infobox item
{{Infobox item
|name=Cooking Pot
|name=Cooking Pot
|model=CookingPot Model.png
|model=CookingPot_Model.png
|icon=Pot.png
|icon=Pot.png
|icon_name=Cooking Pot
|icon_name=Cooking Pot
<!--|model2=CookingPotWater_Model.png-->
|model2=CookingPot_Water_Model.png
|icon2=Pot_Water.png
|icon2=Pot_Water.png
|icon_name2=Cooking Pot with Water
|icon_name2=Cooking Pot with Water
Line 23: Line 22:
|item_id2=Base.WaterPot
|item_id2=Base.WaterPot
}}
}}
{{Quote|text=Can be used to collect rainwater when placed on the ground outside|author=In-game tooltip}}
{{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]].
A '''cooking pot''' is a [[water]] container used in [[cooking]].
Line 68: Line 68:


==Distribution==
==Distribution==
Cooking pots can be found in kitchen [[Containers#Counters|counters]] of many houses and restaurants.
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==
==Code==
Line 74: Line 119:
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 390
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item Pot
item Pot
    {
{
        DisplayCategory = Cooking,
    DisplayCategory = Cooking,
        Weight         = 1,
Weight = 1,
        CanStoreWater   = TRUE,
CanStoreWater = TRUE,
        Type           = Normal,
Type = Normal,
        DisplayName     = Cooking Pot,
DisplayName = Cooking Pot,
        ReplaceOnUseOn = WaterSource-WaterPot,
ReplaceOnUseOn = WaterSource-WaterPot,
        Icon           = Pot,
Icon = Pot,
        MetalValue     = 40,
MetalValue = 40,
        RainFactor     = 1,
RainFactor = 1,
        Tooltip         = Tooltip_item_RainFromGround,
Tooltip = Tooltip_item_RainFromGround,
        StaticModel     = CookingPot,
StaticModel = CookingPot,
        EatType         = Pot,
EatType = Pot,
        WorldStaticModel = CookingPotGround,
WorldStaticModel = CookingPotGround,
    }
}  
}}
}}
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2692
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item WaterPot
item WaterPot
    {
{
        DisplayName             = Cooking Pot with Water,
DisplayName = Cooking Pot with Water,
        DisplayCategory         = Water,
DisplayCategory = Water,
        Type                   = Drainable,
Type = Drainable,
        Weight                 = 3,
Weight = 3,
        Icon                   = Pot_Water,
Icon = Pot_Water,
        CanStoreWater           = TRUE,
CanStoreWater = TRUE,
        EatType                 = Pot,
EatType = Pot,
        FillFromDispenserSound = GetWaterFromDispenserMetalBig,
FillFromDispenserSound = GetWaterFromDispenserMetalBig,
        FillFromTapSound       = GetWaterFromTapMetalBig,
FillFromTapSound = GetWaterFromTapMetalBig,
        IsCookable             = TRUE,
IsCookable = TRUE,
        IsWaterSource           = TRUE,
IsWaterSource = TRUE,
        RainFactor             = 1,
RainFactor = 1,
        ReplaceOnDeplete       = Pot,
ReplaceOnDeplete = Pot,
        ReplaceOnUseOn         = WaterSource-WaterPot,
ReplaceOnUseOn = WaterSource-WaterPot,
        Tooltip                 = Tooltip_item_RainFromGround,
Tooltip = Tooltip_item_RainFromGround,
        UseDelta               = 0.04,
UseDelta = 0.04,
        UseWhileEquipped       = FALSE,
UseWhileEquipped = FALSE,
        StaticModel             = CookingPot,
StaticModel = CookingPot,
        WorldStaticModel       = CookingPotWater_Ground,
WorldStaticModel = CookingPotWater_Ground,
        Tags                   = HasMetal,
Tags = HasMetal,
    }
}  
}}
}}
}}
}}
Line 134: Line 181:
*[[Dry Ramen Noodles]]
*[[Dry Ramen Noodles]]


{{Navbox equipment}}
{{Navbox equipment|containers}}
{{Navbox food}}
{{Navbox food}}


[[Category:Cooking tools]]
[[Category:Cooking tools]]
[[Category:Tools]]
[[Category:Tools]]

Revision as of 10:28, 26 March 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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Pot of Soup (Uncooked)
Pot of Soup (Uncooked)
0.75 Cooking none CanOpener.png
Can Opener
(keep)
Pot.png
Cooking Pot
(consumed)
Soup.png
Canned Vegetable Soup
(consumed)
Pot of Soup (Uncooked)
Pot of Soup (Uncooked)
0.75 Cooking none CanOpener.png
Can Opener
(keep)
Pot.png
Cooking Pot
(consumed)
CannedMushroomSoup.png
Canned Mushroom Soup
(consumed)
Pot Water.png
Recipe ingredients
0 XP none Pot.png
Cooking Pot
(consumed)
WaterDrop.png
Water
(25 units)

(consumed)
SpagettiRaw.png
Pasta
(10 units)

(consumed)
Pot Water.png
Recipe ingredients
0 XP none Pot.png
Cooking Pot
(consumed)
WaterDrop.png
Water
(25 units)

(consumed)
RiceRaw.png
Rice
(10 units)

(consumed)
Fish Sushi
Fish Sushi
0.75 Cooking none
(5 units)

(consumed)

(5 units)

(consumed)

Maki
Maki
0.75 Cooking none
(2 units)

(consumed)

(2 units)

(consumed)
Seaweed.png
Seaweed
(consumed)
Cooking Pot with Rice (Cooked)
Cooking Pot with Rice (Cooked)
2.5 Cooking none Heat source.gif
Heat source
(Cooked: 20 mins)
Cooking Pot with Rice (Uncooked)
Cooking Pot with Rice (Uncooked)
(consumed)

Cooking Pot with Pasta (Cooked)
Cooking Pot with Pasta (Cooked)
2.5 Cooking none Heat source.gif
Heat source
(Cooked: 20 mins)
Cooking Pot with Pasta (Uncooked)
Cooking Pot with Pasta (Uncooked)
(consumed)

Pot of Soup
Pot of Soup
0.75 Cooking none Pot Water.png
Cooking Pot
(Base item)
Soup Ingredients
Soup Ingredients (1−6)
(consumed)

Pot of Stew
Pot of Stew
0.75 Cooking none Pot Water.png
Cooking Pot
(Base item)
Stew Ingredients
Stew Ingredients (1−6)
(consumed)

Bowl of Rice
Bowl of Rice x2
0 XP none Bowl.png
Bowl x2
(consumed)
Cooking Pot with Rice
Cooking Pot with Rice
(consumed)

Bowl of Pasta
Bowl of Pasta x2
0 XP none Bowl.png
Bowl x2
(consumed)
Cooking Pot with Pasta
Cooking Pot with Rice
(consumed)

Bowl of Rice
Bowl of Rice x4
0 XP none Bowl.png
Bowl x4
(consumed)
Cooking Pot with Rice
Cooking Pot with Rice
(consumed)

Bowl of Pasta
Bowl of Pasta x4
0 XP none Bowl.png
Bowl x4
(consumed)
Cooking Pot with Pasta
Cooking Pot with Pasta
(consumed)

First aid

Main article: First Aid
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Bandage.png
Sterilized Bandage
0 XP none Bandage.png
Bandage
(consumed)
One of:
Alcohol.png Bottle of Disinfectant (3 units)
WhiskeyFull.png Bourbon (10 units)
Pot Water.png Cooking Pot (5 units) (Heat: -0.22)
SaucepanEmpty.png Saucepan (10 units) (Heat: -0.22)

(consumed)
Sterilized Rag
Sterilized Rag
0 XP none Rag.png
Ripped Sheets
(consumed)
One of:
Alcohol.png Bottle of Disinfectant (3 units)
WhiskeyFull.png Bourbon (10 units)
Pot Water.png Cooking Pot (5 units) (Heat: -0.22)
SaucepanEmpty.png Saucepan (10 units) (Heat: -0.22)

(consumed)

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