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

Canned Peaches

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Peaches
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Peaches
CanClosedPeaches Model.png
TinnedPeachesOpen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
Yes
Days fresh
5 days
Days until rotten
7 days
Nutrition
HungerUI Hunger.png
-15
CaloriesCalories
250
CarbohydratesCarbohydrates
30
ProteinsProteins
10
FatFat
24
Effect
UnhappinessUI Unhappy.png
-10
Technical
Item ID
Base.CannedPeaches
Base.CannedPeachesOpen

Canned peaches (written as PEACHES on the model) is a non-perishable food item.

Usage

Canned peaches can only be opened with a can opener, and once opened become perishable.

Product Ingredients Tools Requirements Workstation XP
Opened Canned Peaches
Opened Canned Peaches
CannedPeaches.png Canned Peaches ×1 CanOpener.png
Can Opener
none none none

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.

State Icon Hunger Boredom Unhappiness Sickness chance
Fresh Opened Canned Peaches (Fresh) -15 - -10 -
Stale Opened Canned Peaches (Stale) -11 +10 - -
Rotten Opened Canned Peaches (Rotten) -6 +20 +10 100%

Crafting

Main article: Cooking

Evolved recipes

Canned peaches is a cooking ingredient.

Product Nutrition
FruitSalad.png
Fruit Salad
15
PieWhole.png
Pie (savory)
15
Cake.png
Cake (crafted)
15
Muffintray Batter.png
Muffin (crafted)
15
PancakesFruit.png
Pancakes (crafted)
15
SafflesFruit.png
Waffles (crafted)
15
Oatmeal
Oatmeal
5

Location

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

CannedPeaches distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average 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. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
FoodCache1 FoodBox 56.03%
garagestorage crate 19.68%
generalstore crate 23.67%
generalstore shelves 23.67%
generalstorestorage crate 23.67%
generalstorestorage shelves 23.67%
gigamart crate 23.67%
gigamart shelves 23.67%
grocery crate 23.67%
grocery shelves 23.67%
grocery smallcrate 23.67%
grocerystorage crate 41.46%
grocerystorage crate 23.67%
grocerystorage crate 3.98%
grocerystorage metal_shelves 41.46%
grocerystorage metal_shelves 23.67%
grocerystorage metal_shelves 3.98%
grocerystorage smallcrate 41.46%
grocerystorage smallcrate 23.67%
grocerystorage smallcrate 3.98%
kitchen counter 19.68%
kitchen crate 19.68%
kitchen overhead 19.68%
kitchen shelves 19.68%
livingroom counter 19.68%
livingroom overhead 19.68%
SafehouseLoot counter 19.68%
storageunit crate 19.68%
SurvivorCache1 counter 19.68%
SurvivorCache2 counter 19.68%

History

Base.CannedPeaches

Version Description
Build 41.78 Item tag added with value HasMetal.
Build 41.71 Hotfix CantEat added with value TRUE.
Build 41.69 Weight changed from 0.3 to 0.8.
Build 41.65 Released on this version.

Code

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

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

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

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

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

See also