Canned Peas

From PZwiki
Revision as of 14:39, 12 March 2022 by Vaileasys (talk | contribs) (updated to 41.68)

Template:Infobox foodCanned peas is a non-perishable food item.

Usage

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

Consumable properties

Opened canned peas 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 peas can be used in various cooking recipes.

Evolved recipes

Product Nutrition
Soup
Soup
15
Stew
Stew
15
Stir Fry
Stir Fry
15
Roasted Vegetables
Roasted Vegetables
15
Rice Pot/Saucepan
Rice Pot/Saucepan
15
Omelette
Omelette
7

Distribution

Canned peas is often found in kitchen counters.

Code

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

Canned Peas CannedPeas.png Retrieved: Build 41.68

    item CannedPeas
    {
        DisplayCategory = Food,
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Canned Peas,
        Icon	=	CannedPeas,
        Carbohydrates = 52.5,
        Proteins = 14,
        Lipids = 0,
        Calories = 280,
        Packaged = TRUE,
        StaticModel = CanClosed,
        CannedFood = TRUE,
        WorldStaticModel = CanClosedPeas,
    }

Opened Canned Peas CannedPeasOpen.png Retrieved: Build 41.68

    item CannedPeasOpen
    {
        DisplayCategory = Food,
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Opened Canned Peas,
        Icon	=	CannedPeasOpen,
        HungerChange 		=		-15,
        EvolvedRecipe = Omelette:7;Soup:15;Stew:15;Stir fry Griddle Pan:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15,
        DaysFresh			=	2,
        DaysTotallyRotten	=	4,
        ThirstChange	=	-3,
        Carbohydrates = 52.5,
        Proteins = 14,
        Lipids = 0,
        Calories = 280,
        Packaged = TRUE,
        FoodType    = Vegetables,
        EvolvedRecipeName = Canned Peas,
        ReplaceOnUse    =   TinCanEmpty,
        StaticModel = CanOpen,
        EatType = can,
        CannedFood = TRUE,
        WorldStaticModel = CanOpenPeas,
    }