Tasty Soup: Difference between revisions

From PZwiki
Tasty Soup
(PZ Updater automated execution(task: deploy ReLookup, eid: 549ebfed3292864069189cb1e742f0e1))
m (Cleanup)
Line 1: Line 1:
__NOTOC__
{{Languages}}{{Header|The Game World|Items|Obsolete Items|Removed Food|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete|link=Soup}}{{Infobox food
{{languages|Tasty Soup}}
|display_name=Tasty Soup
{{header|The Game World|Items|Obsolete Items|Removed Food|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete|link=Soup}}{{Consumables
|name_colour=Food
|image = Pot of Soup.png
|name_text_colour=Food
|hunger = -55
|image=PotFull.png
|boredom = -15
|image_width=120px
|unhappiness = -20
|alternate_image=BowlFull.png
|weight = 6.0
|alternate_name=Tasty Bowl of Soup
}}
|alternate_link=Tasty Bowl of Soup
The '''Tasty Soup''' was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
|weight=6
 
|category=Food
|hunger_change=-55
|thirst_change=
|calories=
|carbohydrates=
|proteins=
|lipids=
|unhappy_change=-20
|cook_minutes=
|burn_minutes=
|days_fresh=
|days_rotten=
|class_name=
}}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|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.


== Former Description ==
==Effects==
Tasty Soup is a tasty yet nutritious food item that is crafted with three units of [[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.
[[Boredom]]: -15


== Effects ==
==Crafting==
[[Boredom]]: -15<br>
[[Hunger]]: -55<br>
[[Unhappy]]: -20
== Crafting ==
{{Crafting header|ing=4}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2007 -->
{{Crafting header|ing=4}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2007 -->
{{Crafting/core|ing=4
{{Crafting/core|ing=4
Line 43: Line 54:
|}
|}


==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.


== Bugs ==
==Code==
- 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.
<pre>
 
item TastySoup
- 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 ==
<nowiki>item TastySoup
HungerChange = -55,
HungerChange = -55,
Weight = 6,
Weight = 6,
Line 65: Line 75:
         DaysFresh = 2,
         DaysFresh = 2,
         CustomContextMenu = Drink,
         CustomContextMenu = Drink,
</pre>


</nowiki>
{{Navbox food}}
 
{{Navbox/Consumables}}
 
[[Category:Food]]

Revision as of 14:31, 8 April 2023

BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.
Tasty Soup
Tasty Soup
Tasty Bowl of Soup
General
Category Food
Encumbrance
Heavy Load
6
Nutrition
Hunger
Hunger
-55
Effect
Unhappiness
Unhappiness
-20
Technical details
Item ID

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

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
Tasty Soup
Tasty Soup x1
none Water
Water x1
(consumed)
Cooking Pot
Cooking Pot x1
Soup Ingredients
Recipe ingredients x3
(consumed)
Heat Source
Heat source
(cooked:90min burned:140min)
Tasty Bowl of Soup
Soup x4
none Tasty Soup
Tasty Soup x1
(consumed)
Bowl
Bowl x4
(consumed)
Heat Source
Heat source
(cooked:23min burned:35min)

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,