Canned Peas: Difference between revisions

From PZwiki
(New infobox + new layout)
(updated to 41.68)
Line 1: Line 1:
{{languages|Canned Peas}}
{{languages}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 40|incver=14}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 41|incver=68}}{{Infobox food
|display_name=Canned Peas
|display_name=Canned Peas
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=CannedPeas_120px.png
|image=TinnedPeas_Model.png
|alternate_image=CannedPeasOpen.png
|image_width=300px
|alternate_image=CannedPeas.png
|alternate_link=
|alternate_link=
|alternate_name=Opened Canned Peas
|alternate_name=Canned Peas
|alternate_image2=CannedPeasOpen.png
|alternate_link2=
|alternate_name2=Opened Canned Peas
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.8
|weight=0.7
|days_fresh=3
|days_fresh=2
|days_rotten=5
|days_rotten=4
|packaged=True
|packaged=True
<!--NUTRITION-->
<!--NUTRITION-->
Line 50: Line 54:
Canned peas can be used in various cooking recipes.
Canned peas can be used in various cooking recipes.
====Evolved recipes====
====Evolved recipes====
{{EvolvedRecipesForItem|soup=15|stew=15|stirfry=15|roastedvegetables=15|ricepot=15|ricepan=15}}
{{EvolvedRecipesForItem|omelette=7|soup=15|stew=15|stirfry=15|roastedvegetables=15|ricepot=15|ricepan=15}}


==Distribution==
==Distribution==
Line 56: Line 60:


== Code ==
== Code ==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''


''Canned Peas'' [[File:CannedPeas.png|32px]]
''Canned Peas'' [[File:CannedPeas.png|32px]]
{{Retrieved|version=40|incver=14}}
{{Retrieved|version=41|incver=68}}
<pre> item CannedPeas
<pre>   item CannedPeas
        Weight = 0.7,
    {
        Type = Food,
        DisplayCategory = Food,
        DisplayName = Canned Peas,
        Weight = 0.7,
        Icon = CannedPeas,
        Type = Food,
        Carbohydrates = 52.5,
        DisplayName = Canned Peas,
        Proteins = 14,
        Icon = CannedPeas,
        Lipids = 0,
        Carbohydrates = 52.5,
        Calories = 280,
        Proteins = 14,
        Packaged = TRUE,</pre>
        Lipids = 0,
        Calories = 280,
        Packaged = TRUE,
        StaticModel = CanClosed,
        CannedFood = TRUE,
        WorldStaticModel = CanClosedPeas,
    }</pre>


''Opened Canned Peas'' [[File:CannedPeasOpen.png|32px]]
''Opened Canned Peas'' [[File:CannedPeasOpen.png|32px]]
{{Retrieved|version=40|incver=14}}
{{Retrieved|version=41|incver=68}}
<pre> item CannedPeasOpen
<pre>   item CannedPeasOpen
        Weight = 0.7,
    {
        Type = Food,
        DisplayCategory = Food,
        DisplayName = Open Canned Peas,
        Weight = 0.7,
        Icon = CannedPeasOpen,
        Type = Food,
        HungerChange = -15,
        DisplayName = Opened Canned Peas,
        EvolvedRecipe = Soup:15;Stew:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15,
        Icon = CannedPeasOpen,
        DaysFresh = 2,
        HungerChange = -15,
        DaysTotallyRotten = 4,
        EvolvedRecipe = Omelette:7;Soup:15;Stew:15;Stir fry Griddle Pan:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15,
        Carbohydrates = 52.5,
        DaysFresh = 2,
        Proteins = 14,
        DaysTotallyRotten = 4,
        Lipids = 0,
        ThirstChange = -3,
        Calories = 280,
        Carbohydrates = 52.5,
        Packaged = TRUE,
        Proteins = 14,
        FoodType   = Vegetables,
        Lipids = 0,
        EvolvedRecipeName = Canned Peas,
        Calories = 280,
        ReplaceOnUse    =  TinCanEmpty,</pre>
        Packaged = TRUE,
        FoodType   = Vegetables,
        EvolvedRecipeName = Canned Peas,
        ReplaceOnUse    =  TinCanEmpty,
        StaticModel = CanOpen,
        EatType = can,
        CannedFood = TRUE,
        WorldStaticModel = CanOpenPeas,
    }</pre>


{{Navbox/Consumables}}
{{Navbox_food}}

Revision as of 14:39, 12 March 2022

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,
    }