Tasty Soup: Difference between revisions

From PZwiki
Tasty Soup
No edit summary
No edit summary
Line 19: Line 19:
{{RecipeLookup|27}}
{{RecipeLookup|27}}
|}
|}
== Bugs ==
0.2.0R: Trying to craft tasty soup causes the game to crash. Copy/pasting recipecode.lua in Project Zomboid\media\luaexamples\other to Project Zomboid\media\lua solves the problem.


== Code ==
== Code ==

Revision as of 13:53, 2 July 2012


The tasty soup is a tasty yet nutritious food item that is crafted by putting a full pot of soup and three soup ingredients. The tasty soup takes out a huge amount of hunger and a medium amount of boredom and unhappiness. It is unadvised to eat a tasty soup when not in the "hungry" moodle, as a good amount of will go to waste. Cooking the soup will greatly increase its effectiveness.

Effects

Moodles: -15
Hungry: -126
Unhappy: -20

Crafting

Name Recipe Description

























Bugs

0.2.0R: Trying to craft tasty soup causes the game to crash. Copy/pasting recipecode.lua in Project Zomboid\media\luaexamples\other to Project Zomboid\media\lua solves the problem.

Code

item TastySoup
{
	Type = Food,
	DisplayName = Tasty Soup,
	Icon = PotFull,
	Weight = 7,
	IsCookable = true,
	MinutesToCook = 90,
	MinutesToBurn = 140,
	HungerChange = -126,
	BoredomChange = -15,
	UnhappyChange = -20,
	ReplaceOnUse = Pot
}

Template:Navbox/Consumables