Cooking Pot

From PZwiki
(Redirected from Cooking Pot)
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

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