Wild plants

From PZwiki
Revision as of 08:06, 22 August 2018 by Vaileasys (talk | contribs)

Template:Infobox food

PlushSpiffo.pngThis article is about flora without medicinal properties. For flora with medicinal properties, see [[Medicinal plants]].

Flora is a collection of foraged, non-perishable edible plants, including violets, grape leaves and rosehips.

Usage

Flora can be consumed, fullfilling the player with a small amount of hunger.

Nutrition

Flora Hunger Calories Carbohydrates Proteins Fat
Violets -2 27 7 1 0
Grape Leaves -4 73 11 4 2
Rosehips -6 81 19 2 0

Distribution

Rosehips, grape leaves and violets do not spawn naturally, and can only be obtained through foraging.

Foraging

Main article: Foraging

Each item of flora is foraged at a different skill level.

Flora Description Skill Level
Violets

Violets

A beautiful edible flower 0
Grape Leaves

Grape Leaves

Delicious leaves of the grapevine 1
Rosehips

Rosehips

Delicious fruit of the rose 2

Code

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

Violets Violets.png Retrieved: Build 40.7

	item Violets
		HungerChange	= -2,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Violets,
		Icon		= Violets,
		Carbohydrates 	= 7,
		Proteins 	= 1,
		Lipids 		= 0,
		Calories 	= 27,

Grape Leaves GrapeLeaves.png Retrieved: Build 40.7

	item GrapeLeaves
		HungerChange	= -4,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Grape Leaves,
		Icon		= GrapeLeaves,
		Carbohydrates 	= 11,
		Proteins 	= 4,
		Lipids 		= 2,
		Calories 	= 73,

Rosehips Rosehips.png Retrieved: Build 40.7

	item Rosehips
		HungerChange	= -6,
		Weight		= 0.1,
		Type		= Food,
		DisplayName	= Rosehips,
		Icon		= Rosehips,
		Carbohydrates 	= 19,
		Proteins 	= 2,
		Lipids 		= 0,
		Calories 	= 81,

See also

Template:Navbox/Consumables