Canned Peaches

From PZwiki
Revision as of 18:53, 7 October 2022 by Kienlabadao (talk | contribs)

Template:Infobox foodCanned peaches is a non-perishable food item.

Usage

Canned peaches 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 Peaches
Opened Canned Peaches
0 XP none CannedPeaches.png
Canned Peaches
(consumed)
CanOpener.png
Can Opener
(keep)

Template:Crafting table footer

Consumable properties

Opened canned peaches 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 peaches is a cooking ingredient.

Product Nutrition
Fruit Salad
Fruit Salad
15
Pie (savory)
Pie (savory)
15
Cake
Cake
15
Muffin
Muffin
15
Pancakes
Pancakes
15
Waffles
Waffles
15
Oatmeal
Oatmeal
5

Distribution

Canned fruit peaches can often be found in kitchen counters.

Gallery

Code

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

Canned Peaches CannedPeaches.png Retrieved: Build 41.73

    item CannedPeaches
	{
		DisplayName = Canned Peaches,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedPeaches,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedPeaches_Ground,
	}

Opened Canned Peaches CannedPeachesOpen.png Retrieved: Build 41.73

    item CannedPeachesOpen
	{
		DisplayName = Opened Canned Peaches,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedPeachesOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Cake:15;FruitSalad:15;Pancakes:15;Waffles:15;Muffin:15;PieSweet:15;Oatmeal:5,
		EvolvedRecipeName = Peach,
		FoodType = Fruits,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 5,
		DaysTotallyRotten = 7,
		HungerChange = -15,
		UnhappyChange = -10,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenPeaches_Ground,
	}

See also