Canned Peas

From PZwiki
Revision as of 02:20, 28 February 2023 by Faalagorn (talk | contribs) (Remove obsolete template)
Canned Peas
Canned Peas
Opened Canned Peas
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 2 days
Days until rotten 2 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. Template:Consumables2

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