Chives: Difference between revisions

From PZwiki
m (Update link)
m (Automated Formatting)
 
(22 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Spices}}
|display_name=Chives
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Chives
|image=
|model=HerbChives_Model.png
|alternate_image=HerbChives.png
|icon=HerbChives.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 17: Line 17:
|spice=True
|spice=True
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Chives}}Chives are a [[Wild_Herbs|wild herb]] which can be used as a [[Food#Non-Perishable|non-perishable]] [[food]] item or used in [[cooking]] as 'spice'.
|item_id=Base.Chives
}}
'''Chives''' are a [[Wild Herbs|wild herb]] which can be used as a non-perishable [[food]] [[Items|item]] or used in [[cooking]] as ''spice''.


==Usage==
==Usage==
Line 23: Line 25:


==Distribution==
==Distribution==
Chives do not spawn naturally and can only be obtained by [[foraging]].  
Chives do not spawn naturally and can only be obtained by [[foraging]].


==Cooking==
==Cooking==
====Evolved recipes====
====Evolved recipes====
Chives are a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
Chives are a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|spice=true||Pizza=1|Omelette=1|PastaPan=1|PastaPot=1|RoastedVegetables=1|Salad=1|Sandwich=1|SandwichBaguette=1|Soup=1|Stew=1|Bread=1|Toast=1|Burger=1|}}
{{EvolvedRecipesForItem|spice=true|pizza=1|omelette=1|pastapan=1|pastapot=1|roastedvegetables=1|salad=1|sandwich=1|sandwichbaguette=1|soup=1|stew=1|bread=1|toast=1|burger=1}}


==Foraging==
==Foraging==
Line 35: Line 36:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
item Chives
  | line = true
  | start = 8535
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Chives
{
{
DisplayName = Chives,
DisplayName = Chives,
Line 45: Line 52:
Weight = 0.1,
Weight = 0.1,
Icon = HerbChives,
Icon = HerbChives,
EvolvedRecipe = Pizza:1;Omelette:1;PastaPan:1;PastaPot:1;Roasted Vegetables:1;Salad:1;Sandwich:1;Sandwich Baguette:1;Soup:1;Stew:1;Bread:1;Toast:1;Burger:1,
EvolvedRecipe = Stir fry:1;Roasted Vegetables:1;Pizza:1;Omelette:1;PastaPan:1;PastaPot:1;Roasted Vegetables:1;Salad:1;Sandwich:1;Sandwich Baguette:1;Soup:1;Stew:1;Bread:1;Toast:1;Burger:1,
Spice = true,
Spice = true,
HungerChange = -1,
HungerChange = -1,
Line 55: Line 62:
FoodType = Herb,
FoodType = Herb,
}
}
</pre>
}}
}}


==See also==
==See also==
*[[Wild Herbs]]
*[[Wild Herbs]]


{{Navbox food}}
{{Navbox items|plants}}
 
 
[[Category:Wild herbs]]
[[Category:Non-perishable food]]

Latest revision as of 07:32, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Chives
HerbChives Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-1
CaloriesCalories
0.1
CarbohydratesCarbohydrates
0
ProteinsProteins
0
FatFat
0
Cooking
Spice
True
Technical
Item ID
Base.Chives

Chives are a wild herb which can be used as a non-perishable food item or used in cooking as spice.

Usage

Chives are used as spice in cooking recipes.

Distribution

Chives do not spawn naturally and can only be obtained by foraging.

Cooking

Evolved recipes

Chives are a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.

Product Nutrition
Soup
Soup
1
Stew
Stew
1
Salad
Salad
1
Roasted Vegetables
Roasted Vegetables
1
Sandwich
Sandwich
1
Burger
Burger
1
Pasta Pot/Saucepan
Pasta Pot/Saucepan
1
Omelette
Omelette
1
Pizza
Pizza
1
Bread
Bread
1
Toast
Toast
1

Foraging

Chives can only be found by foraging.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Chives
	{
		DisplayName = Chives,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = HerbChives,
		EvolvedRecipe = Stir fry:1;Roasted Vegetables:1;Pizza:1;Omelette:1;PastaPan:1;PastaPot:1;Roasted Vegetables:1;Salad:1;Sandwich:1;Sandwich Baguette:1;Soup:1;Stew:1;Bread:1;Toast:1;Burger:1,
		Spice = true,
		HungerChange = -1,
		Calories = 0.1,
		Carbohydrates = 0,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = HerbChives_Ground,
		FoodType = Herb,
	}

See also