Canned Tomato

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Tomato
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Tomato
TinnedTomatoes Model.png
TinnedTomatoesOpen 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
-12
ThirstMoodle Icon Thirsty.png
-8
CaloriesCalories
90
CarbohydratesCarbohydrates
18
ProteinsProteins
3
FatFat
0
Technical
Item ID
Base.CannedTomato2
Base.CannedTomatoOpen

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

Usage

Canned tomato 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 Tomato
Opened Canned Tomato
0 XP none CannedTomato.png
Canned Tomato
(consumed)
CanOpener.png
Can Opener
(keep)

Consumable properties

Opened canned tomato 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
CannedTomatoOpen.png
Hunger: -12
CannedTomatoOpen.png
Hunger: -9
Boredom: +10
Unhappiness: +10
CannedTomatoOpen.png
Hunger: -5
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned tomato is a cooking ingredient.

Product Nutrition
Soup
Soup
12
Stew
Stew
12
Salad
Salad
6
Stir Fry
Stir Fry
12
Roasted Vegetables
Roasted Vegetables
12
Sandwich
Sandwich
6
Burger
Burger
6
Pie (savory)
Pie (savory)
12
Rice Pot/Saucepan
Rice Pot/Saucepan
12
Pasta Pot/Saucepan
Pasta Pot/Saucepan
12
Omelette
Omelette
12
Pizza
Pizza
12

Distribution

Canned tomato can often be found in kitchen counters.

Code

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

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

Retrieved: Build 41.78.16
item CannedTomato2
	{
		DisplayName = Canned Tomato,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedTomato,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 90,
		Carbohydrates = 18,
		Lipids = 0,
		Proteins = 3,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedTomatoes,
	}

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

Retrieved: Build 41.78.16
item CannedTomatoOpen
	{
		DisplayName = Opened Canned Tomato,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedTomatoOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Pizza:12;Omelette:12;Soup:12;Stew:12;Pie:12;Stir fry Griddle Pan:12;Stir fry:12;Sandwich:6;Sandwich Baguette:6;Burger:6;Salad:6;Roasted Vegetables:12;RicePot:12;RicePan:12;PastaPot:12;PastaPan:12,
		EvolvedRecipeName = Tomato,
		FoodType = Vegetables,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -12,
		ThirstChange = -8,
		Calories = 90,
		Carbohydrates = 18,
		Lipids = 0,
		Proteins = 3,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenTomatoes,
	}

See also