Mayonnaise: Difference between revisions

From PZwiki
(updated to 41.68 + added model + navbox)
mNo edit summary
Line 1: Line 1:
{{languages}}
{{languages|Mayonnaise}}
{{header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=68}}{{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=JarLid_Mayo_Model.png
|image=TZ_MayonnaiseFull 120px.png
|image_width=125px
|image_width=125px
|alternate_image=TZ_MayonnaiseFull.png
|alternate_image=TZ_MayonnaiseEmpty.png
|alternate_name=Mayonnaise
|alternate_name=Empty Bottle
|alternate_link=
|alternate_link=Water Bottle (Mayonnaise)
|alternate_image2=TZ_MayonnaiseEmpty.png
|alternate_name2=Empty Bottle
|alternate_link2=Water Bottle (Mayonnaise)
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.5
|weight=0.5
|max_units=30
|packaged=Yes
|packaged=True
|days_fresh=10
|days_fresh=10
|days_rotten=13
|days_rotten=3
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-30
|hunger_change=-30
Line 26: Line 22:
|carbohydrates=0
|carbohydrates=0
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=5
|unhappy_change=+5
|boredom_change=10
|boredom_change=+10
<!--COOKING-->
|spice=True
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=farming.MayonnaiseFull
|class_name=farming.MayonnaiseFull
Line 52: Line 46:


==Crafting==
==Crafting==
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
==== Evolved recipes ====
=== Evolved recipes ===
Mayonnaise is a spice when used in cooking 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|ricepot=2|ricepan=2|pastapot=2|pastapan=2|taco=2|burrito=2}}
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|salad=2|rice=2|pasta=2|taco=2|burrito=2}}


==Distribution==
==Distribution==
Mayonnaise can be found in [[refrigerator]]s.
Mayonnaise can be found in [[refrigerator]]s.
==Gallery==
<gallery>
JarLid_Mayo_Model.png|Mayonnaise model when placed in the world.
</gallery>


== Code ==
== Code ==
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
'''''From farming.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41|incver=73}}
<pre>    item MayonnaiseFull
<pre>    item MayonnaiseFull
{
{
Line 76: Line 74:
DaysFresh = 10,
DaysFresh = 10,
DaysTotallyRotten = 13,
DaysTotallyRotten = 13,
ReplaceOnUse     = MayonnaiseEmpty,
ReplaceOnUse     = MayonnaiseEmpty,
EvolvedRecipe      = Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2;Taco:2;Burrito:2,
EvolvedRecipe      = Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2;Taco:2;Burrito:2,
Spice  = true,
Spice  = true,

Revision as of 08:07, 5 October 2022

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,
	}