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 Ingredients Tools Requirements Workstation XP
CannedPeasOpen.png
Opened Canned Peas
CannedPeas.png Canned Peas ×1 CanOpener.png
Can Opener
none none none

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

The loot distributions can be found in the table(s) below.

CannedPeas distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
Bag_FoodCanned Bag_FoodCanned 23.28%
Bag_SurvivorBag Bag_SurvivorBag 23.28%
FoodCache1 FoodBox 55.18%
GroceryBag1 GroceryBag1 0.89%
GroceryBag2 GroceryBag2 2.81%
SafehouseLoot counter 19.27%
SurvivorCache1 SurvivorCrate 19.27%
SurvivorCache1 counter 19.27%
SurvivorCache2 SurvivorCrate 19.27%
SurvivorCache2 counter 19.27%
garagestorage crate 19.27%
generalstore crate 23.28%
generalstore shelves 23.28%
generalstorestorage crate 23.28%
generalstorestorage shelves 23.28%
gigamart crate 23.28%
gigamart shelves 23.28%
grocery crate 23.28%
grocery shelves 23.28%
grocery smallcrate 23.28%
grocerystorage crate 3.51%
grocerystorage crate 23.28%
grocerystorage crate 41.14%
grocerystorage metal_shelves 3.51%
grocerystorage metal_shelves 23.28%
grocerystorage metal_shelves 41.14%
grocerystorage smallcrate 3.51%
grocerystorage smallcrate 23.28%
grocerystorage smallcrate 41.14%
kitchen counter 19.27%
kitchen crate 19.27%
kitchen overhead 19.27%
kitchen shelves 19.27%
livingroom counter 19.27%
livingroom overhead 19.27%
storageunit crate 19.27%

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,
		Tags = HasMetal,
	}

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,
		Tags = HasMetal,
	}

See also