Canned Tuna

From PZwiki
Revision as of 11:15, 29 January 2024 by VaileasysBot (talk | contribs) (→‎top: New infobox upgrade - Food)

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Canned Tuna
TinnedTuna Model.png
Opened Canned Tuna
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Packaged
Yes
Days fresh
2 days
Days until rotten
4 days
Nutrition
HungerMoodle Icon Hungry.png
-18
CaloriesCalories
370
CarbohydratesCarbohydrates
0
ProteinsProteins
15
FatFat
34
Technical
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.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Opened Tin of Tuna
Opened Canned Tuna
0 XP none Tuna.png
Canned Tuna
(consumed)

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.

Fresh Stale Rotten

TunaOpen.png
Hunger: -18


TunaOpen.png
Hunger: -13
Boredom: +10
Unhappiness: +10

TunaOpen.png
Hunger: -8
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned tuna is a cooking ingredient.

Product Nutrition
Stew
Stew
18
Stir Fry
Stir Fry
18
Sandwich
Sandwich
9
Rice Pot/Saucepan
Rice Pot/Saucepan
18
Taco
Taco
9
Burrito
Burrito
18
Omelette
Omelette
9

Distribution

Canned tuna can often be found in kitchen counters.

Gallery

Code

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

Canned Tuna Tuna.png Retrieved: Build 41.73

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

Opened Canned Tuna TunaOpen.png Retrieved: Build 41.73

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

See also