Canned Potato

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Potato
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Potato
TinnedPotatoes Model.png
TinnedPotatoesOpen 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
HungerMoodle Icon Hungry.png
-18
ThirstMoodle Icon Thirsty.png
-7
CaloriesCalories
175
CarbohydratesCarbohydrates
35
ProteinsProteins
2.5
FatFat
0
Technical
Item ID
Base.CannedPotato2
Base.CannedPotatoOpen

Canned potato (written as NEW POTATOES on the model) is a non-perishable food item.

Usage

Canned potato 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 Potato
Opened Canned Potato
0 XP none CannedPotato.png
Canned Potato
(consumed)
CanOpener.png
Can Opener
(keep)

Consumable properties

Opened canned potato 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
CannedPotatoOpen.png
Hunger: -18
CannedPotatoOpen.png
Hunger: -13
Boredom: +10
Unhappiness: +10
CannedPotatoOpen.png
Hunger: -8
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned potato is a cooking ingredient.

Product Nutrition
Soup
Soup
18
Stew
Stew
18
Salad
Salad
9
Stir Fry
Stir Fry
18
Roasted Vegetables
Roasted Vegetables
18
Pie (savory)
Pie (savory)
18
Omelette
Omelette
9

Distribution

Canned potato can often be found in kitchen counters.

Code

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

CannedPotato.png Base.CannedPotato2
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item CannedPotato2
	{
		DisplayName = Canned Potato,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedPotato,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 175,
		Carbohydrates = 35,
		Lipids = 0,
		Proteins = 2.5,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedPotatoes,
	}

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

Retrieved: Build 41.78.16
item CannedPotatoOpen
	{
		DisplayName = Opened Canned Potato,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedPotatoOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Omelette:9;Soup:18;Stew:18;Pie:18;Stir fry Griddle Pan:18;Stir fry:18;Salad:9;Roasted Vegetables:18,
		/*EvolvedRecipeName = Canned Potato,*/
		EvolvedRecipeName = Potato,
		FoodType = Vegetables,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -18,
		ThirstChange = -7,
		Calories = 175,
		Carbohydrates = 35,
		Lipids = 0,
		Proteins = 2.5,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenPotatoes,
	}

See also