Tasty Soup: Difference between revisions

From PZwiki
Tasty Soup
m (Change to icon)
m (Removing trailing whitespace(s))
Line 38: Line 38:
  | product_image = [[File:PotFull.png|link=Tasty Soup]]
  | product_image = [[File:PotFull.png|link=Tasty Soup]]
  | product_name = [[Tasty Soup]]
  | product_name = [[Tasty Soup]]
  | product_quantity =  
  | product_quantity =
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | rec =  
  | rec =
  | f1 = [[File:Water drop.png|link=Water]]
  | f1 = [[File:Water drop.png|link=Water]]
  | i1 = [[Water]]
  | i1 = [[Water]]
  | q1 =  
  | q1 =
  | tag1 = (consumed)
  | tag1 = (consumed)
  | f2 = [[File:Pot.png|link=Cooking Pot]]
  | f2 = [[File:Pot.png|link=Cooking Pot]]
  | i2 = [[Cooking Pot]]
  | i2 = [[Cooking Pot]]
  | q2 =  
  | q2 =
  | f3 = [[File:Soup Ingredients.png|link=Recipe ingredients#Soup & Stew Ingredients|Soup Ingredients]]
  | f3 = [[File:Soup Ingredients.png|link=Recipe ingredients#Soup & Stew Ingredients|Soup Ingredients]]
  | i3 = [[Recipe ingredients#Soup & Stew Ingredients]]
  | i3 = [[Recipe ingredients#Soup & Stew Ingredients]]
Line 54: Line 54:
  | f4 = [[File:Heat source.gif|link=Heat source]]
  | f4 = [[File:Heat source.gif|link=Heat source]]
  | i4 = [[Heat source]]
  | i4 = [[Heat source]]
  | q4 =  
  | q4 =
  | tag4 = (cooked:90min burned:140min)
  | tag4 = (cooked:90min burned:140min)
  | sl = ''none''
  | sl = ''none''
  | req =  
  | req =
}}
}}
{{Crafting|ing=4
{{Crafting|ing=4
Line 64: Line 64:
  | product_quantity = x4
  | product_quantity = x4
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | rec =  
  | rec =
  | f1 = [[File:PotFull.png|link=Tasty Soup]]
  | f1 = [[File:PotFull.png|link=Tasty Soup]]
  | i1 = [[Tasty Soup]]
  | i1 = [[Tasty Soup]]
  | q1 =  
  | q1 =
  | tag1 = (consumed)
  | tag1 = (consumed)
  | f2 = [[File:Bowl.png|link=Bowl]]
  | f2 = [[File:Bowl.png|link=Bowl]]
Line 75: Line 75:
  | f3 = [[File:Heat source.gif|link=Heat source]]
  | f3 = [[File:Heat source.gif|link=Heat source]]
  | i3 = [[Heat source]]
  | i3 = [[Heat source]]
  | q3 =  
  | q3 =
  | tag3 = (cooked:23min burned:35min)
  | tag3 = (cooked:23min burned:35min)
  | sl = ''none''
  | sl = ''none''
  | req =  
  | req =
}}
}}
|}
|}

Revision as of 11:10, 28 February 2024

Template:Header/sandbox2

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
BoxSmall.png
This item has been removed from the game.
It has been replaced by Recipe ingredients.
Tasty Soup
Tasty Bowl of Soup
Tasty Soup
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
6
Nutrition
HungerMoodle Icon Hungry.png
-55
Effect
UnhappinessMoodle Icon Unhappy.png
-20

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

Former crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
PotFull.png
Tasty Soup
none Water drop.png
Water
(consumed)
Pot.png
Cooking Pot
Soup Ingredients
Recipe ingredients x3
(consumed)
Heat source.gif
Heat source
(cooked:90min burned:140min)
BowlFull.png
Soup x4
none PotFull.png
Tasty Soup
(consumed)
Bowl.png
Bowl x4
(consumed)
Heat source.gif
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,