Canned Potato

From PZwiki
Revision as of 14:42, 12 March 2022 by Vaileasys (talk | contribs) (updated to 41.68)
Canned Potato
Canned Potato
Canned Potato Opened Canned Potato
General
Category Food
Encumbrance
Heavy Load
0.7
Days until stale 2 days
Days until rotten 4 days
Packaged True
Nutrition
Hunger
Hunger
-18
Thirst
Thirst
-7
Calories
Calories
175
Carbohydrates
Carbohydrates
35
Proteins
Proteins
2.5
Fat
Fat
0
Technical details
Item ID Base.CannedPotato
Base.CannedPotatoOpen

Canned potato is a non-perishable food item.

Usage

Canned potato can only be opened with a can opener, and once opened become perishable.

Consumable properties

Opened canned potato can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish. Template:Consumables2

Crafting

Cooking

Main article: Cooking

Canned potato can be used in various cooking recipes.

Evolved recipes

Product Nutrition
Soup
Soup
18
Stew
Stew
18
Salad
Salad
9
Stir Fry
Stir Fry
18
Roasted Vegetables
Roasted Vegetables
18
Pie (savory)
Pie (savory)
18
Omelette
Omelette
9

Distribution

Canned potato is often found in kitchen counters.

Code

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

Canned Potato CannedPotato.png Retrieved: Build 41.68

    item CannedPotato2
    {
        DisplayCategory = Food,
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Canned Potato,
        Icon	=	CannedPotato,
        Carbohydrates = 35,
        Proteins = 2.5,
        Lipids = 0,
        Calories = 175,
        Packaged = TRUE,
        StaticModel = CanClosed,
        CannedFood = TRUE,
        WorldStaticModel = CanClosedPotatoes,
    }

Opened Canned Potato CannedPotatoOpen.png Retrieved: Build 41.68

    item CannedPotatoOpen
    {
        DisplayCategory = Food,
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Opened Canned Potato,
        Icon	=	CannedPotatoOpen,
        HungerChange 		=		-18,
        EvolvedRecipe       =       Omelette:9;Soup:18;Stew:18;Pie:18;Stir fry Griddle Pan:18;Stir fry:18;Salad:9;Roasted Vegetables:18,
        DaysFresh			=	2,
        DaysTotallyRotten	=	4,
        ThirstChange	=	-7,
        Carbohydrates = 35,
        Proteins = 2.5,
        Lipids = 0,
        Calories = 175,
        Packaged = TRUE,
        FoodType    = Vegetables,
        EvolvedRecipeName = Canned Potato,
        ReplaceOnUse    =   TinCanEmpty,
        StaticModel = CanOpen,
        EatType = can,
        CannedFood = TRUE,
        WorldStaticModel = CanOpenPotatoes,
    }

See also