Mayonnaise: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Mayonnaise}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
|display_name=Mayonnaise
|display_name=Mayonnaise
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=TZ_MayonnaiseFull 120px.png
|image=TZ_MayonnaiseFull.png
|image_width=125px
|image_width=120px
|alternate_image=TZ_MayonnaiseEmpty.png
|alternate_image=TZ_MayonnaiseEmpty.png
|alternate_name=Empty Bottle
|alternate_name=Empty Bottle
Line 29: Line 28:


==Usage==
==Usage==
=== Consumable properties ===
 
===Consumable properties===
Mayonnaise can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
Mayonnaise can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
{{Consumables2
{{Consumables2
Line 47: Line 47:
==Crafting==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
=== Evolved recipes ===
 
===Evolved recipes===
Mayonnaise is a spice when used in [[cooking]] [[Recipe Ingredients|recipes]], therefore will not be included in the maximum number of ingredients.
Mayonnaise is a spice when used in [[cooking]] [[Recipe Ingredients|recipes]], therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|salad=2|rice=2|pasta=2|taco=2|burrito=2}}
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|salad=2|rice=2|pasta=2|taco=2|burrito=2}}
Line 56: Line 57:
==Gallery==
==Gallery==
<gallery>
<gallery>
JarLid_Mayo_Model.png|Mayonnaise model when placed in the world.
JarLid Mayo Model.png|Mayonnaise model when placed in the world.
</gallery>
</gallery>


== Code ==
==Code==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
<pre>   item MayonnaiseFull
<pre>
    item MayonnaiseFull
{
{
DisplayCategory = Food,
DisplayCategory = Food,
Line 85: Line 87:
         StaticModel = MayoJar,
         StaticModel = MayoJar,
         WorldStaticModel = MayoJar_Ground,
         WorldStaticModel = MayoJar_Ground,
}</pre>
}
</pre>


{{Navbox_food}}
{{Navbox food}}

Revision as of 20:26, 26 February 2023

Mayonnaise
Mayonnaise
Empty Bottle
General
Category Food
Encumbrance
Heavy Load
0.5
Days until stale 10 days
Days until rotten 3 days
Packaged Yes
Nutrition
Hunger
Hunger
-30
Calories
Calories
3000
Carbohydrates
Carbohydrates
0
Proteins
Proteins
0
Fat
Fat
330
Effect
Unhappiness
Unhappiness
+5
Boredom
Boredom
+10
Technical details
Item ID farming.MayonnaiseFull

Mayonnaise is a perishable 'spice' food item used in cooking.

Usage

Consumable properties

Mayonnaise 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

Mayonnaise is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.

Product Nutrition
Salad
Salad
2
Sandwich
Sandwich
2
Burger
Burger
2
Rice Pot/Saucepan
Rice Pot/Saucepan
2
Pasta Pot/Saucepan
Pasta Pot/Saucepan
2
Taco
Taco
2
Burrito
Burrito
2

Distribution

Mayonnaise can be found in refrigerators.

Gallery

Code

From farming.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.73

    item MayonnaiseFull
	{
		DisplayCategory 	= Food,
		Type			= Food,
		DisplayName		= Mayonnaise,
		Icon			= TZ_MayonnaiseFull,
		Weight			= 0.5,
		HungerChange 		= -30,
		BoredomChange 		= 10,
		UnhappyChange 		= 5,
		DaysFresh 		= 10,
		DaysTotallyRotten	= 13,
		ReplaceOnUse 	    	= MayonnaiseEmpty,
		EvolvedRecipe       	= Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2;Taco:2;Burrito:2,
		Spice   		= true,
        	Carbohydrates 		= 0,
        	Proteins 		= 0,
        	Lipids 			= 330,
        	Calories 		= 3000,
        	Packaged 		= TRUE,
        	EatType 		= candrink,
        	StaticModel 		= MayoJar,
        	WorldStaticModel 	= MayoJar_Ground,
	}