Canned Tuna

From PZwiki
Revision as of 15:10, 12 March 2022 by Vaileasys (talk | contribs) (updated to 41.68)
Canned Tuna
Canned Tuna
Canned Tuna Opened Canned Tuna
General
Category Food
Encumbrance
Heavy Load
0.3
Days until stale 2 days
Days until rotten 4 days
Packaged True
Nutrition
Hunger
Hunger
-17
Calories
Calories
370
Carbohydrates
Carbohydrates
0
Proteins
Proteins
15
Fat
Fat
34
Technical details
Item ID Base.TunaTin
Base.TunaTinOpen

Canned tuna 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.

Consumable properties

Opened canned tuna can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish. Template:Consumables2

Crafting

Cooking

Main article: Cooking

Canned tuna can be used in various cooking recipes.

Evolved recipes

Product Nutrition
Stew
Stew
17
Stir Fry
Stir Fry
17
Sandwich
Sandwich
17
Rice Pot/Saucepan
Rice Pot/Saucepan
17
Omelette
Omelette
8

Distribution

Canned tuna is often found in kitchen counters.

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

Canned Tuna Tuna.png Retrieved: Build 41.68

	item TunaTin
	{
		DisplayCategory = Food,
		Weight	=	0.3,
		Type	=	Food,
		DisplayName	=	Canned Tuna,
		Icon	=	Tuna,
        	Carbohydrates = 0,
        	Proteins = 15,
        	Lipids = 34,
        	Calories = 370,
        	Packaged = TRUE,
        	StaticModel = CanClosed,
        	CannedFood = TRUE,
        	WorldStaticModel = TinnedTuna_Ground,
	}

Opened Canned Tuna TunaOpen.png Retrieved: Build 41.68

	item TunaTinOpen
	{
	    DisplayCategory = Food,
		HungerChange	=	-17,
		Weight	=	0.3,
		Type	=	Food,
		DaysTotallyRotten	=	4,
		DisplayName	=	Opened Tin of Tuna,
		Icon	=	TunaOpen,
		DaysFresh	=	2,
		EvolvedRecipe = Omelette:8;Stew:17;Stir fry Griddle Pan:17;Stir fry:17;RicePot:17;RicePan:17;Sandwich:17;Sandwich Baguette:17,
		FoodType = Fish,
		Carbohydrates = 0,
		Proteins = 15,
        	Lipids = 34,
        	Calories = 370,
        	Packaged = TRUE,
        	ReplaceOnUse    =   TinCanEmpty,
        	StaticModel = CanOpen,
        	EatType = can,
        	CannedFood = TRUE,
        	WorldStaticModel = TinnedTuna_Open_Ground,
	}

See also