Canned Fruit Cocktail: Difference between revisions

From PZwiki
mNo edit summary
mNo edit summary
Line 57: Line 57:


==Distribution==
==Distribution==
Canned fruit cocktail is often found in [[Containers#Kitchen Counter|kitchen counters]].
Canned fruit cocktail can often be found in [[Containers#Kitchen Counter|kitchen counters]].


==Gallery==
==Gallery==
<gallery>
<gallery>
TinnedFruitCocktail_Model.png|Canned fruit cocktail model when placed in the world.
TinnedFruitCocktail_Model.png|Model for: [[File:CannedFruitCocktail.png]]
TinnedFruitCocktailOpen_Model.png|Opened canned fruit cocktail model when placed in the world.
TinnedFruitCocktailOpen_Model.png|Model for: [[File:CannedFruitCocktailOpen.png]]
</gallery>
</gallery>



Revision as of 18:51, 7 October 2022

Project ZomboidItemsFoodNon-Perishable FoodCanned FoodCanned Fruit Cocktail

Template:Infobox foodCanned fruit cocktail is a non-perishable food item.

Usage

Canned fruit cocktail 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 Fruit Cocktail
Opened Canned Fruit Cocktail
0 XP none CannedFruitCocktail.png
Canned Fruit Cocktail
(consumed)
CanOpener.png
Can Opener
(keep)

Template:Crafting table footer

Consumable properties

Opened canned fruit cocktail 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

Main article: Cooking

Evolved recipes

Canned fruit cocktail is a cooking ingredient.

Product Nutrition
Fruit Salad
Fruit Salad
15
Pie (savory)
Pie (savory)
15
Cake
Cake
15
Muffin
Muffin
15
Pancakes
Pancakes
15
Waffles
Waffles
15
Oatmeal
Oatmeal
5
Ice Cream Cone
Ice Cream Cone
5

Distribution

Canned fruit cocktail can often be found in kitchen counters.

Gallery

Code

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

Canned Fruit Cocktail CannedFruitCocktail.png Retrieved: Build 41.73

    item CannedFruitCocktail
	{
		DisplayName = Canned Fruit Cocktail,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedFruitCocktail,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosedFruitCocktail_Ground,
	}

Opened Canned Fruit Cocktail CannedFruitCocktailOpen.png Retrieved: Build 41.73

    item CannedFruitCocktailOpen
	{
		DisplayName = Opened Canned Fruit Cocktail,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedFruitCocktailOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Cake:15;FruitSalad:15;Pancakes:15;Waffles:15;Muffin:15;ConeIcecream:5;PieSweet:15;Oatmeal:5,
		EvolvedRecipeName = Fruit,
		FoodType = Fruits,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 5,
		DaysTotallyRotten = 7,
		HungerChange = -15,
		UnhappyChange = -10,
		Calories = 250,
		Carbohydrates = 0,
		Lipids = 24,
		Proteins = 10,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpenFruitCocktail_Ground,
	}

See also