Canned Peaches

From PZwiki
(Redirected from Canned Peaches)
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
TinnedPeaches 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
HungerMoodle Icon Hungry.png
-15
CaloriesCalories
250
CarbohydratesCarbohydrates
30
ProteinsProteins
10
FatFat
24
Effect
UnhappinessMoodle Icon 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
CannedPeachesOpen.png
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.

Fresh Stale Rotten

CannedPeachesOpen.png
Hunger: -15

Unhappiness: -10

CannedPeachesOpen.png
Hunger: -11
Boredom: +10

CannedPeachesOpen.png
Hunger: -6
Boredom: +20
Unhappiness: +10
Dangerous, will cause sickness.

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.

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