Ketchup: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Ketchup}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{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.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 25: Line 24:
Ketchup can be eaten raw, providing the player with some positive and negative effects. Ketchup is more effective when used as [[cooking]] [[Recipe Ingredients|ingredient]], as all negative effects are removed.
Ketchup can be eaten raw, providing the player with some positive and negative effects. Ketchup is more effective when used as [[cooking]] [[Recipe Ingredients|ingredient]], as all negative effects are removed.


== Crafting ==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
=== Evolved recipes ===
 
===Evolved recipes===
Ketchup is a spice when used in [[cooking]] [[Recipe Ingredients|recipes]], therefore will not be included in the maximum number of ingredients.
Ketchup 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|rice=2|pasta=2|taco=2|burrito=2}}
{{EvolvedRecipesForItem|spice=true|sandwich=2|burger=2|rice=2|pasta=2|taco=2|burrito=2}}
Line 39: Line 39:
</gallery>
</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=73}}
{{Retrieved|version=41|incver=73}}
<pre>   item Ketchup
<pre>
    item Ketchup
{
{
DisplayName = Ketchup,
DisplayName = Ketchup,
Line 61: Line 62:
WorldStaticModel = Ketchup,
WorldStaticModel = Ketchup,
FoodType = NoExplicit,
FoodType = NoExplicit,
}</pre>
}
</pre>


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


{{Navbox_food}}
{{Navbox food}}

Revision as of 23:24, 20 February 2023

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

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

Usage

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

Crafting

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.

Gallery

Code

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

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

See also