Canned Peas: Difference between revisions

From PZwiki
m (Minor cleanups)
m (Category Project: Canned food)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{Header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 41|incver=73}}
{{header/sandbox2|Project Zomboid|Items|Food|Canned food}}
{{page version|41.73}}
{{Infobox food
{{Infobox food
|display_name=Canned Peas
|display_name=Canned Peas
Line 75: Line 76:
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
''Canned Peas'' [[File:CannedPeas.png|32px]]
''Canned Peas'' [[File:CannedPeas.png|32px]]
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41.73}}
<pre>
<pre>
     item CannedPeas
     item CannedPeas
Line 96: Line 97:
</pre>
</pre>
''Opened Canned Peas'' [[File:CannedPeasOpen.png]]
''Opened Canned Peas'' [[File:CannedPeasOpen.png]]
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41.73}}
<pre>
<pre>
     item CannedPeasOpen
     item CannedPeasOpen
Line 128: Line 129:


{{Navbox food}}
{{Navbox food}}
[[Category:Non-perishable food]]

Revision as of 07:04, 27 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Canned Peas
Canned Peas
Canned Peas
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 2 days
Days until rotten 4 days
Packaged Yes
Nutrition
Hunger
Hunger
-16
Thirst
Thirst
-3
Calories
Calories
280
Carbohydrates
Carbohydrates
52.5
Proteins
Proteins
14
Fat
Fat
0
Technical details
Item ID Base.CannedPeas
Base.CannedPeasOpen

Canned peas is a non-perishable food item.

Usage

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

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Opened Canned Peas
Opened Canned Peas
0 XP none CannedPeas.png
Canned Peas
(consumed)
CanOpener.png
Can Opener
(keep)

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.

Fresh Stale Rotten

CannedPeasOpen.png
Hunger: -16


CannedPeasOpen.png
Hunger: -12
Boredom: +10
Unhappiness: +10

CannedPeasOpen.png
Hunger: -7
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned peas is a cooking ingredient.

Product Nutrition
Soup
Soup
16
Stew
Stew
16
Stir Fry
Stir Fry
16
Roasted Vegetables
Roasted Vegetables
16
Rice Pot/Saucepan
Rice Pot/Saucepan
16
Omelette
Omelette
8

Distribution

Canned peas can often be found in kitchen counters.

Gallery

Code

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

Canned Peas CannedPeas.png Retrieved: Build 41.73

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

Opened Canned Peas CannedPeasOpen.png Retrieved: Build 41.73

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