Medicinal plants

From PZwiki
Revision as of 12:26, 10 August 2018 by Vaileasys (talk | contribs) (adjusted layout and added nutritional information)

Template:ItemsA medicinal herb is any one of the five herbs forageable by a herbalist.

Usage

There are five different types of medicinal herbs, with each having a unique effect applying to the player's health once consumed. The plantain, comfrey and wild garlic must first be crafted into a poultice using a mortar and pestle, whilst the others can be consumed raw.

Item Description Effect
Black Sage
Black Sage
Provides mild pain relief. Reduce pain by 7
Comfrey
Comfrey
Aids recovery from broken bones when applied as a poultice. -
Common Mallow
Common Mallow
Eat to relieve cold and flu symptoms. Reduce cold symptioms by 5
Ginseng
Ginseng
Eat to restore endurance. Reduce exertion by 2
Lemon Grass
Lemon Grass
Eat to soothe bouts of food poisoning. Reduce food sickness by 10
Plantain
Plantain
Aids recovery from wounds when appliced as a poultice. -
Wild Garlic
Wild Garlic
Helps to fight against infection when applied as poultice. -

Nutritional information

Its values are as follows:Template:Upcoming

Carbohydrates = 0
Proteins = 0
Lipids = 0
Calories = 0.1

Crafting

Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

Medicinal herbs can only be found by foraging. They will never be found unless the player has the herbalist Herbalist trait or read The Herbalist The Hearbalist magazine.

Code

From newitems.txt (Project Zomboid directory/media/scripts/)

Plantain PlantainPlantago.png Retrieved: Build 40.6

	item Plantain
		Weight		= 0.1,
		Type		= Normal,
		DisplayName	= Plantain,
		Icon		= PlantainPlantago,
		Tooltip 	= Tooltip_Plantain,

Comfrey Comfrey.png Retrieved: Build 40.6

	item Comfrey
		Weight		= 0.1,
		Type		= Normal,
		DisplayName	= Comfrey,
		Icon		= Comfrey,
		Tooltip 	= Tooltip_Comfrey,

Wild Garlic WildGarlic.png Retrieved: Build 40.6

	item WildGarlic
		Weight		= 0.1,
		Type		= Normal,
		DisplayName	= Wild Garlic,
		Icon		= WildGarlic,
		Tooltip 	= Tooltip_Garlic,

Common Mallow CommonMallow.png Retrieved: Build 40.6

	item CommonMallow
		HungerChange	= -1,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Common Mallow,
		Icon		= CommonMallow,
		FluReduction	= 5,
		Tooltip 	= Tooltip_Mallow,
		Carbohydrates	= 0,
		Proteins	= 0,
		Lipids		= 0,
		Calories	= 0.1,

Lemon Grass LemonGrass.png Retrieved: Build 40.6

	item LemonGrass
		HungerChange		= -1,
		Weight			= 0.1,
		Type			= Food,
		DisplayName		= Lemon Grass,
		Icon			= LemonGrass,
		ReduceFoodSickness	= 10,
		Tooltip 		= Tooltip_LemonGrass,
		Carbohydrates		= 0,
		Proteins		= 0,
		Lipids			= 0,
		Calories		= 0.1,

Black Sage BlackSage.png Retrieved: Build 40.6

	item BlackSage
		HungerChange	= -1,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Black Sage,
		Icon		= BlackSage,
		PainReduction	= 7,
		Tooltip 	= Tooltip_BlackSage,
		Carbohydrates	= 0,
		Proteins	= 0,
		Lipids		= 0,
		Calories	= 0.1,

Ginseng Ginseng.png Retrieved: Build 40.6

	item Ginseng
		HungerChange	= -1,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Ginseng,
		Icon		= Ginseng,
		EnduranceChange	= 2,
		Tooltip 	= Tooltip_Ginseng,
		Carbohydrates	= 0,
		Proteins	= 0,
		Lipids		= 0,
		Calories	= 0.1,

See also

Template:Navbox/Consumables