Mixed Vegetables: Difference between revisions

From PZwiki
m (Automatic formatting)
m (Verified)
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D model}}
{{Infobox item
{{Infobox item
|name=Mixed Vegetables
|name=Mixed Vegetables
<!--3D model does not exist yet-->
|icon=Frozen_MixedVegetables.png
|icon=Frozen_MixedVegetables.png
|icon_name=Mixed Vegetables
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 85: Line 86:
|}
|}
Mixed vegetables are often found in [[refrigerator]]s and [[Containers#Displays|grocery displays]].
Mixed vegetables are often found in [[refrigerator]]s and [[Containers#Displays|grocery displays]].
==Trivia==
*This item doesn't have a 3D model currently. When the item is dropped in game, it shows the 2D icon on the ground.


==Code==
==Code==
Line 118: Line 122:
}}
}}
}}
}}
==See also==
*[[Food#Vegetables]]
*[[Packaged Corn]]


{{Navbox food}}
{{Navbox food}}


[[Category:Perishable food]]
[[Category:Perishable food]]

Revision as of 23:45, 26 March 2024

Project ZomboidItemsFoodVegetablesMixed Vegetables
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Mixed Vegetables
Mixed Vegetables
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.6
Properties
Packaged
Yes
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-20
ThirstMoodle Icon Thirsty.png
-5
CaloriesCalories
271
CarbohydratesCarbohydrates
37
ProteinsProteins
9
FatFat
0
Technical
Item ID
Base.MixedVegetables

Mixed vegetables are a perishable food item.

Usage

Consumable properties

Mixed vegetables 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

Frozen MixedVegetables.png
Hunger: -20


Frozen MixedVegetables.png
Hunger: -15
Boredom: +10
Unhappiness: +10

Frozen MixedVegetables.png
Hunger: -9
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved Recipes

Mixed vegetables are a cooking ingredient.

Product Nutrition
Soup
Soup
10
Stew
Stew
10
Stir Fry
Stir Fry
10
Roasted Vegetables
Roasted Vegetables
10
Rice Pot/Saucepan
Rice Pot/Saucepan
10
Omelette
Omelette
5

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
dinerkitchen freezer 4 1
kitchen freezer 4 1
freezer 4 1
freezer 4 1
restaurantkitchen freezer 4 1

Mixed vegetables are often found in refrigerators and grocery displays.

Trivia

  • This item doesn't have a 3D model currently. When the item is dropped in game, it shows the 2D icon on the ground.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item MixedVegetables
	{
		DisplayName = Mixed Vegetables,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.6,
		Icon = Frozen_MixedVegetables,
		EvolvedRecipe = Soup:10;Stew:10;Stir fry Griddle Pan:10;Stir fry:10;Roasted Vegetables:10;RicePot:10;RicePan:10;Omelette:5,
		FoodType = Vegetables,
		EvolvedRecipeName = Vegetable,
		Packaged = TRUE,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -20,
		ThirstChange = -5,
		Calories = 271,
		Carbohydrates = 37,
		Lipids = 0,
		Proteins = 9,
	}

See also