Tasty Soup: Difference between revisions

From PZwiki
Tasty Soup
m (Removed obsolete items category - included in notice box now)
(Movement of Page to Removed Foods Category, modernised layout, + navbar, + brief descrip.)
Line 1: Line 1:
__NOTOC__
{{languages}}
{{languages}}
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[ Main_Page|Index]] -> [[:Category:Food|Food]] -> [[:Category:Removed_Food|Removed Foods]] -> [[Tasty_Soup|Tasty Soup]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
{{Notice|Obsolete}}
{{Notice|Obsolete}}
{{Consumables
{{Consumables
|image = Pot of Soup.png
|image = Pot of Soup.png
|hunger = -55
|hunger = -55
|boredom = -15
|unhappiness = -20
|weight = 6.0
|weight = 6.0
}}
}}
<br />
The Tasty Soup was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
<br />
<br><br>
== Former Description ==
Tasty Soup is a tasty yet nutritious food item that is crafted with three units of [[Water|water]], a [[Cooking Pot]] and three [[Soup_Ingredients|soup ingredients]], the soup relieves a huge amount of hunger and a medium amount of boredom and unhappiness. It is not advised to eat simple soup if the 'hungry' moodle has not appeared, as a good amount of will go to waste. Cooking the soup will greatly increase its effectiveness.
Tasty Soup is a tasty yet nutritious food item that is crafted with three units of [[Water|water]], a [[Cooking Pot]] and three [[Soup_Ingredients|soup ingredients]], the soup relieves a huge amount of hunger and a medium amount of boredom and unhappiness. It is not advised to eat simple soup if the 'hungry' moodle has not appeared, as a good amount of will go to waste. Cooking the soup will greatly increase its effectiveness.


Line 31: Line 39:
== Code ==
== Code ==
  <nowiki>item TastySoup
  <nowiki>item TastySoup
{
HungerChange = -55,
HungerChange = -55,
Weight = 6,
Weight = 6,
Line 46: Line 53:
         DaysFresh = 2,
         DaysFresh = 2,
         CustomContextMenu = Drink,
         CustomContextMenu = Drink,
}
 
</nowiki>
</nowiki>


{{Navbox/Consumables}}
{{Navbox/Consumables}}
[[Category:Consumables]]
[[Category:Consumables]]
[[Category:Food]]
[[Category:Removed Food]]
[[Category:Cookable Food]]
[[Category:Version 34.28]]
[[Category:Non-Perishable Food]]
[[Category:Version 2.9.9.17]]

Revision as of 16:16, 9 July 2016


Page Updated @ Version: 34.28
   Navigation - Index -> Food -> Removed Foods -> Tasty Soup   
BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.

The Tasty Soup was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.

Former Description

Tasty Soup is a tasty yet nutritious food item that is crafted with three units of water, a Cooking Pot and three soup ingredients, the soup relieves a huge amount of hunger and a medium amount of boredom and unhappiness. It is not advised to eat simple soup if the 'hungry' moodle has not appeared, as a good amount of will go to waste. Cooking the soup will greatly increase its effectiveness.

Effects

Moodles: -15
Hungry: -55
Unhappy: -20

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
	HungerChange		=	-55,
	Weight			=	6,
	Type			=	Food,
	IsCookable		=	TRUE,
	UnhappyChange		=	-20,
	MinutesToBurn		=	140,
	DisplayName		=	Tasty Soup,
	ReplaceOnUse		=	Pot,
	Icon			=	PotFull,
	MinutesToCook		=	90,
	BoredomChange		=	-15,
        DaysTotallyRotten	=	4,
        DaysFresh 		=	2,
        CustomContextMenu	=	Drink,


Template:Navbox/Consumables