Canned Peas

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Peas
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Peas
TinnedPeas Model.png
TinnedPeasOpen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
Yes
Days fresh
2 days
Days until rotten
4 days
Nutrition
HungerMoodle Icon Hungry.png
-16
ThirstMoodle Icon Thirsty.png
-3
CaloriesCalories
280
CarbohydratesCarbohydrates
52.5
ProteinsProteins
14
FatFat
0
Technical
Item ID
Base.CannedPeas
Base.CannedPeasOpen

Canned peas (written as PEAS on the model) 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.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

CannedPeas.png Base.CannedPeas
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
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,
	}

CannedPeasOpen.png Base.CannedPeasOpen
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
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,
	}

See also