Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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
CanClosedPeas 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
HungerUI Hunger.png
-16
ThirstUI Thristy.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
Opened Canned Peas
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.

State Icon Hunger Boredom Unhappiness Sickness chance
Fresh Opened Canned Peas (Fresh) -16 - - -
Stale Opened Canned Peas (Stale) -12 +10 +10 -
Rotten Opened Canned Peas (Rotten) -7 +20 +20 100%

Crafting

Main article: Cooking

Evolved recipes

Canned peas is a cooking ingredient.

Product Nutrition
PotFull.png
Soup
16
PotFull.png
Stew
16
Stir Fry
Stir Fry
16
RoastingpanFull.png
Roasted Vegetables
16
Rice Pot/SaucepanRice Pot/Saucepan
Rice Pot/Saucepan
16
PanFull.png
Omelette (crafted)
8

Location

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

CannedPeas distributionShow / 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 Duffel Bag 23.28%
Bag_SurvivorBag Large Backpack 23.28%
FoodCache1 FoodBox 55.18%
GroceryBag1 Plastic Bag 0.89%
GroceryBag2 Plastic Bag 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.

History

Base.CannedPeas

Version Description
38.30 Released on or before this version.

Help PZwiki by adding to this history.

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