Basil: Difference between revisions

From PZwiki
m (Category Project: Spices)
m (Update shorthand parameters)
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Spices}}
{{header/sandbox2|Project Zomboid|Items|Food|Spices}}
{{Page version|41.78.16}}
{{page version|41.73}}
{{Infobox item
{{Infobox food
|name=Basil
|display_name=Basil
|model=Basil_Model.png
|name_colour=Food
|icon=HerbBasil.png
|name_text_colour=Food
|image=Basil_Model.png
|alternate_image=HerbBasil.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 20: Line 17:
|spice=True
|spice=True
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Basil
|item_id=Base.Basil
}}
}}
'''Basil''' is a [[Wild Herbs|wild herb]] which can be used as a [[Food#Non-Perishable|non-perishable]] [[food]] item or used in [[cooking]] as 'spice'.
'''Basil''' is a [[Wild Herbs|wild herb]] which can be used as a [[Food#Non-Perishable|non-perishable]] [[food]] item or used in [[cooking]] as 'spice'.


Line 28: Line 26:


==Distribution==
==Distribution==
Basil does not spawn naturally and can only be obtained by [[foraging]].  
Basil does not spawn naturally and can only be obtained by [[foraging]].


==Cooking==
==Cooking==
Line 39: Line 37:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.73}}
| {{CodeSnip
<pre>
  | lang = java
item Basil
  | line = true
  | start = 8517
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Basil
{
{
DisplayName = Basil,
DisplayName = Basil,
Line 58: Line 62:
WorldStaticModel = Basil_Ground,
WorldStaticModel = Basil_Ground,
FoodType = Herb,
FoodType = Herb,
}
}  
</pre>
}}
}}


==See also==
==See also==
Line 65: Line 70:


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

Revision as of 02:26, 28 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Basil
Basil 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.Basil

Basil is a wild herb which can be used as a non-perishable food item or used in cooking as 'spice'.

Usage

Basil is used as spice in cooking recipes.

Distribution

Basil does not spawn naturally and can only be obtained by foraging.

Cooking

Evolved recipes

Basil is 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
Stir Fry
Stir Fry
1
Roasted Vegetables
Roasted Vegetables
1
Sandwich
Sandwich
1
Burger
Burger
1
Rice Pot/Saucepan
Rice Pot/Saucepan
1
Pasta Pot/Saucepan
Pasta Pot/Saucepan
1
Omelette
Omelette
1
Pizza
Pizza
1
Bread
Bread
1

Foraging

Basil 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 Basil
	{
		DisplayName = Basil,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = HerbBasil,
		EvolvedRecipe = Stir fry:1;Stir fry Griddle Pan:1;Pizza:1;Omelette:1;PastaPan:1;PastaPot:1;RicePan:1;RicePot:1;Sandwich:1;Salad:1;Sandwich Baguette:1;Soup:1;Stew:1;Bread:1;Burger:1;Roasted Vegetables:1,
		Spice = true,
		HungerChange = -1,
		Calories = 0.1,
		Carbohydrates = 0,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = Basil_Ground,
		FoodType = Herb,
	}

See also