Canned Sardines

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Project ZomboidItemsFoodCanned foodCanned Sardines
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Sardines
CannedSardines Model.png
CannedSardinesOpen Model.png
CannedSardinesRottenOpen 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
-14
CaloriesCalories
150
CarbohydratesCarbohydrates
0
ProteinsProteins
14
FatFat
11
Technical
Item ID
Base.CannedSardines
Base.CannedSardinesOpen

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

Usage

Canned tuna can be opened without the need of a can opener, however once opened it becomes perishable.

Product Ingredients Tools Requirements Workstation XP
CannedSardinesOpen.png
Opened Canned Sardines
CannedSardines.png Canned Sardines ×1 none none none none

Consumable properties

Opened canned sardines 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

CannedSardinesOpen.png
Hunger: -14


CannedSardinesOpen.png
Hunger: -10
Boredom: +10
Unhappiness: +10

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

Crafting

Main article: Cooking

Evolved recipes

Canned sardines is a cooking ingredient.

Product Nutrition
Stew
Stew
14
Stir Fry
Stir Fry
14
Sandwich
Sandwich
7
Rice Pot/Saucepan
Rice Pot/Saucepan
14
Omelette
Omelette
7
Pizza
Pizza
14
Toast
Toast
7

Distribution

Canned sardines can often be found in kitchen counters.

Code

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

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

Retrieved: Build 41.78.16
item CannedSardines
	{
		DisplayName = Canned Sardines,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedSardines,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 150,
		Carbohydrates = 0,
		Lipids = 11,
		Proteins = 14,
		StaticModel = CanClosed,
		WorldStaticModel = CannedSardines_Ground,
		Tags = HasMetal,
	}

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

Retrieved: Build 41.78.16
item CannedSardinesOpen
	{
		DisplayName = Opened Canned Sardines,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = CannedSardinesOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Pizza:14;Stew:14;Stir fry Griddle Pan:14;Stir fry:14;RicePot:14;RicePan:14;Sandwich:7;Sandwich Baguette:7;Omelette:7;Toast:7,
		/*EvolvedRecipeName = Canned Sardines,*/
		EvolvedRecipeName = Sardine,
		FoodType = Fish,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -14,
		Calories = 150,
		Carbohydrates = 0,
		Lipids = 11,
		Proteins = 14,
		StaticModel = CanOpen,
		WorldStaticModel = CannedSardines_Open_Ground,
		Tags = HasMetal,
	}

See also