Canned Potato

From PZwiki
(Redirected from Canned Potato)
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 Ingredients Tools Requirements Workstation XP
CannedPotatoOpen.png
Opened Canned Potato
CannedPotato.png Canned Potato ×1 CanOpener.png
Can Opener
none none none

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

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

CannedPotato2 distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Bag_FoodCanned 2 20.0
all FoodBox 15 8.0
all GroceryBag1 1 0.8
all GroceryBag2 1 4.0
garagestorage crate 4 8.0
generalstore crate 4 10.0
grocerystorage crate 4 0.8
grocerystorage crate 4 20.0
grocerystorage crate 4 10.0
kitchen counter 4 8.0

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,
		Tags = HasMetal,
	}

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,
		Tags = HasMetal,
	}

See also