Mustard: Difference between revisions

From PZwiki
mNo edit summary
(updated to 41.68 + added model + navbox)
Line 1: Line 1:
{{languages|Mustard}}
{{languages}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=7}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=68}}{{Infobox food
|display_name=Mustard
|display_name=Mustard
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Mustard_120px.png
|image=Mustard_Model.png
|image_width=125px
|alternate_image=Mustard.png
|alternate_name=Mustard
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 16: Line 20:
|carbohydrates=0
|carbohydrates=0
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=30
|unhappy_change=+30
<!--COOKING-->
<!--COOKING-->
|spice=True
|spice=True
Line 37: Line 41:


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


==See also==
==See also==
*[[Hot Sauce]]
*[[Ketchup]]
*[[Ketchup]]
*[[Soy Sauce]]


{{Navbox/Consumables}}
{{Navbox_food}}

Revision as of 06:27, 14 March 2022

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

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

Usage

Mustard is used as a spice in cooking recipes.

Crafting

Cooking

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
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.

Code

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

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

See also