Ketchup: Difference between revisions

From PZwiki
mNo edit summary
(updated to 41.68 + added model + navbox)
Line 1: Line 1:
{{languages|Ketchup}}
{{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=Ketchup
|display_name=Ketchup
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Ketchup_120px.png
|image=Ketchup_Model.png
|image_width=125px
|alternate_image=Ketchup.png
|alternate_name=Ketchup
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 16: Line 20:
|carbohydrates=370
|carbohydrates=370
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=30
|unhappy_change=+30
<!--COOKING-->
<!--COOKING-->
|spice=True
|spice=True
Line 31: Line 35:
==== Evolved recipes ====
==== Evolved recipes ====
Ketchup is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
Ketchup is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|sandwich=2|burger=2|ricepot=2|ricepan=2|pastapot=2|pastapan=2}}
{{EvolvedRecipesForItem|sandwich=2|burger=2|ricepot=2|ricepan=2|pastapot=2|pastapan=2|taco=2|burrito=2}}


==Distribution==
==Distribution==
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 Ketchup
<pre>   item Ketchup
HungerChange = -20,
    {
Weight = 0.2,
        DisplayCategory = Food,
Type = Food,
        HungerChange = -20,
UnhappyChange = 30,
        Weight = 0.2,
DisplayName = Ketchup,
        Type = Food,
Icon = Ketchup,
        UnhappyChange = 30,
EvolvedRecipe = Sandwich:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
        DisplayName = Ketchup,
Spice   = true,
        Icon = Ketchup,
        Carbohydrates = 370,
        EvolvedRecipe = Sandwich:2;Sandwich Baguette:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2;Taco:2;Burrito:2,
        Proteins = 0,
        Spice   =   true,
        Lipids = 0,
        Carbohydrates = 370,
        Calories = 1480,
        Proteins = 0,
        Packaged = TRUE,
        Lipids = 0,
        CantBeFrozen = TRUE,</pre>
        Calories = 1480,
        Packaged = TRUE,
        CantBeFrozen = TRUE,
        WorldStaticModel = Ketchup,
    }</pre>


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


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

Revision as of 06:24, 14 March 2022

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

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

Usage

Ketchup is used as a spice in cooking recipes.

Crafting

Cooking

Main article: Cooking

Evolved recipes

Ketchup 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
Taco
Taco
2
Burrito
Burrito
2

Distribution

Ketchup 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 Ketchup
    {
        DisplayCategory = Food,
        HungerChange	=	-20,
        Weight	=	0.2,
        Type	=	Food,
        UnhappyChange	=	30,
        DisplayName	=	Ketchup,
        Icon	=	Ketchup,
        EvolvedRecipe = Sandwich:2;Sandwich Baguette:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2;Taco:2;Burrito:2,
        Spice   =   true,
        Carbohydrates = 370,
        Proteins = 0,
        Lipids = 0,
        Calories = 1480,
        Packaged = TRUE,
        CantBeFrozen = TRUE,
        WorldStaticModel = Ketchup,
    }

See also