Mustard: Difference between revisions

From PZwiki
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{languages}}
{{languages|Mustard}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=68}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
|display_name=Mustard
|display_name=Mustard
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Mustard_Model.png
|image=Mustard_120px.png
|image_width=125px
|alternate_image=Mustard.png
|alternate_name=Mustard
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.2
|weight=0.2
|max_units=20
|packaged=Yes
|packaged=True
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-20
|hunger_change=-20
Line 22: Line 17:
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=+30
|unhappy_change=+30
<!--COOKING-->
|spice=True
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Mustard
|class_name=Base.Mustard
Line 29: Line 22:


==Usage==
==Usage==
Mustard is used as a spice in cooking recipes.  
Mustard can be eaten raw, providing the player with some positive and negative effects. Mustard is more effective when used as [[cooking]] [[Recipe Ingredients|ingredient]], as all negative effects are removed.


== Crafting ==
== Crafting ==
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
==== Evolved recipes ====
=== Evolved recipes ===
Mustard is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
Mustard is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|ricepot=2|ricepan=2|pastapot=2|pastapan=2}}
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|rice=2|pasta=2|Salad=2}}


==Distribution==
==Distribution==
Mustard can be found in [[Containers#Kitchen_Counter|kitchen counters]], [[refrigerator]]s and the [[trunk]] of a [[Franklin Valuline#Spiffo's Van|Spiffo's van]].
Mustard can be found in [[Containers#Kitchen_Counter|kitchen counters]], [[refrigerator]]s and the [[trunk]] of a [[Franklin Valuline#Spiffo's Van|Spiffo's van]].
==Gallery==
<gallery>
File:Mustard Model.png|Mustard model when placed in the world.
</gallery>


== Code ==
== Code ==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=68}}
{{Retrieved|version=41|incver=73}}
<pre>    item Mustard
<pre>    item Mustard
    {
{
        DisplayCategory = Food,
DisplayName = Mustard,
        HungerChange = -20,
DisplayCategory = Food,
        Weight = 0.2,
Type = Food,
        Type = Food,
Weight = 0.2,
        UnhappyChange = 30,
Icon = Mustard,
        DisplayName = Mustard,
CantBeFrozen = TRUE,
        Icon = Mustard,
EvolvedRecipe = Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
        EvolvedRecipe = Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
Packaged = TRUE,
        Spice   =   true,
Spice = true,
        Carbohydrates = 0,
HungerChange = -20,
        Proteins = 0,
UnhappyChange = 30,
        Lipids = 0,
Calories = 510,
        Calories = 510,
Carbohydrates = 0,
        Packaged = TRUE,
Lipids = 0,
        CantBeFrozen = TRUE,
Proteins = 0,
        WorldStaticModel = Mustard,
WorldStaticModel = Mustard,
    }</pre>
FoodType = NoExplicit,
}
</pre>


==See also==
==See also==

Revision as of 08:11, 5 October 2022

Mustard
Mustard
General
Category Food
Encumbrance
Heavy Load
0.2
Packaged Yes
Nutrition
Hunger
Hunger
-20
Calories
Calories
510
Carbohydrates
Carbohydrates
0
Proteins
Proteins
0
Fat
Fat
0
Effect
Unhappiness
Unhappiness
+30
Technical details
Item ID Base.Mustard

Mustard is a non-perishable 'spice' food item used in cooking.

Usage

Mustard can be eaten raw, providing the player with some positive and negative effects. Mustard is more effective when used as cooking ingredient, as all negative effects are removed.

Crafting

Main article: Cooking

Evolved recipes

Mustard 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

Distribution

Mustard can be found in kitchen counters, refrigerators and the trunk of a Spiffo's van.

Gallery

Code

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

    item Mustard
	{
		DisplayName = Mustard,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Mustard,
		CantBeFrozen = TRUE,
		EvolvedRecipe = Sandwich:2;Sandwich Baguette:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
		Packaged = TRUE,
		Spice = true,
		HungerChange = -20,
		UnhappyChange = 30,
		Calories = 510,
		Carbohydrates = 0,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = Mustard,
		FoodType = NoExplicit,
	}

See also