Canned Pineapple: Difference between revisions

From PZwiki
m (Add note about model name)
(PZ Updater automated execution(task: fix infobox based on file, eid: 00db8d6e))
Line 15: Line 15:
|weight=0.8
|weight=0.8
|days_fresh=5
|days_fresh=5
|days_rotten=2
|days_rotten=7
|packaged = Yes
|packaged = Yes
<!--NUTRITION-->
<!--NUTRITION-->

Revision as of 14:56, 3 July 2023

Template:Infobox foodCanned pineapple (named as "Pineapple slices" on the model) is a non-perishable food item.

Usage

Canned pineapple 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 Pineapple
Opened Canned Pineapple
0 XP none CannedPineapple.png
Canned Pineapple
(consumed)
CanOpener.png
Can Opener
(keep)

Consumable properties

Opened canned pineapple 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 pineapple is a cooking ingredient.

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

Distribution

Canned pineapple can often be found in kitchen counters.

Gallery

Code

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

Canned Pineapple CannedPineapple.png Retrieved: Build 41.73

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

Opened Canned Pineapple CannedPineappleOpen.png Retrieved: Build 41.73

    item CannedPineappleOpen
	{
		DisplayName = Opened Canned Pineapple,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = CannedPineappleOpen,
		CannedFood = TRUE,
		EatType = can,
		EvolvedRecipe = Pizza:15;Cake:15;FruitSalad:15;Pancakes:5;Waffles:5;Muffin:15;ConeIcecream:5;PieSweet:15;Oatmeal:5,
		EvolvedRecipeName = Pineapple,
		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 = CanOpenPineapple_Ground,
	}

See also