Tasty Soup: Difference between revisions

From PZwiki
(updated the stats with the latest correct in-game data.)
Line 2: Line 2:
{{Consumables
{{Consumables
|image = Pot of Soup.png
|image = Pot of Soup.png
|hunger = -126
|hunger = -92
|weight = 7
|weight = 6.0
}}
}}
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.
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 ==
== Effects ==
[[Boredom]]: -15<br>
[[Boredom]]: -35<br>
[[Hunger]]: -126<br>
[[Hunger]]: -92<br>
[[Unhappy]]: -20
[[Unhappy]]: -40
== Crafting ==
== Crafting ==
{| class="wikitable sortable" style="text-align:center;"  
{| class="wikitable sortable" style="text-align:center;"  
Line 35: Line 35:
MinutesToCook = 90,
MinutesToCook = 90,
MinutesToBurn = 140,
MinutesToBurn = 140,
HungerChange = -126,
HungerChange = -92,
BoredomChange = -15,
BoredomChange = -35,
UnhappyChange = -20,
UnhappyChange = -40,
ReplaceOnUse = Pot
ReplaceOnUse = Pot
}</nowiki>
}</nowiki>
Line 46: Line 46:
[[Category:Cookable Food]]
[[Category:Cookable Food]]
[[Category:Non-Perishable Food]]
[[Category:Non-Perishable Food]]
[[Category:Version 0.2.0p]]
[[Category:Version 2.9.9.17]]

Revision as of 17:02, 7 December 2013


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: -35
Hungry: -92
Unhappy: -40

Crafting

Name Recipe Description
























Bugs

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

- 0.2.0R: Placing a pot of any soup and four bowls will output 4 bowls but not refund you an empty pot of soup, meaning the pot of soup is destroyed by pouring the soup into the bowls. This can be fixed by adding a TastyBowl_OnGrab function to the recipecode.lua that adds "Base.Pot" to the player's inventory, and this function needs to be called by adding "TastyBowl4_OnGrab," after the output lines of the TastyBowls4 recipe.

Code

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

Template:Navbox/Consumables