Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Soup

From PZwiki
(Redirected from Soup)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Pot of Soup
CookingPotSoup Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
3
Properties
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerUI Hunger.png
-40
ThirstUI Thristy.png
-40
CaloriesCalories
202
CarbohydratesCarbohydrates
25
ProteinsProteins
14
FatFat
4.5
Effect
UnhappinessUI Unhappy.png
-20
Cooking
Time until cooked
50 minutes
Time until burned
100 minutes
Technical
Item ID
Base.PotOfSoupRecipe

Soup is the product of an evolved recipe.

Soup vs stew

Crafting

Soup is crafted by right-clicking on a cooking pot with water. It should be cooked to gain its full hunger reduction (or to cook raw ingredients). It can accept a maximum of 6 ingredients, as well as spices. Although soup is heavy, it can be separated into two or four bowls. Unlike most other recipes, soup requires a fair amount of water each time.

Serving

Product Ingredients Tools Requirements Workstation XP
BowlFull.png
Bowl of Soup ×2
Empty Bowl Empty Bowl ×2
PotFull.png Soup ×1
none none none none
BowlFull.png
Bowl of Soup ×4
Empty Bowl Empty Bowl ×4
PotFull.png Soup ×1
none none none none

Starting item

Pot Water.png Cooking Pot with Water

Ingredients

Meats

Salmon.png

Moodle Icon Hungry.png 15

HotdogCrafted.png

Moodle Icon Hungry.png 20

Chicken.png

Moodle Icon Hungry.png 18

Lobster.png

Moodle Icon Hungry.png 20

Shrimp.png

Moodle Icon Hungry.png 10

Squid.png

Moodle Icon Hungry.png 15

Fruits & vegetables

Avocado.png

Moodle Icon Hungry.png 16

Peas.png

Moodle Icon Hungry.png 10

Corn.png

Moodle Icon Hungry.png 14

Leek.png

Moodle Icon Hungry.png 12

Tofu.png

Moodle Icon Hungry.png 10

Daikon.png

Moodle Icon Hungry.png 6

Radish.png

Moodle Icon Hungry.png 3

Tomato.png

Moodle Icon Hungry.png 12

Potato.png

Moodle Icon Hungry.png 18

Cabbage.png

Moodle Icon Hungry.png 12

Lemon.png

Moodle Icon Hungry.png 10

Lime.png

Moodle Icon Hungry.png 10

Mushroom

Herb

HerbBasil.png

Moodle Icon Hungry.png 1

HerbChives.png

Moodle Icon Hungry.png 1

HerbSage.png

Moodle Icon Hungry.png 1

HerbThyme.png

Moodle Icon Hungry.png 1

Other

Egg.png

Egg

Moodle Icon Hungry.png 7

Milk.png

Moodle Icon Hungry.png 5

Bread.png

Moodle Icon Hungry.png 5

Cheese.png

Moodle Icon Hungry.png 10

Acorn.png

Moodle Icon Hungry.png 10

Condiments & spices

Salt.png

Moodle Icon Hungry.png 1

Pepper.png

Moodle Icon Hungry.png 1

Butter.png

Moodle Icon Hungry.png 4

Wasabi.png

Moodle Icon Hungry.png 1

Lard.png

Moodle Icon Hungry.png 4

Trivia

  • There is code in the game for a soup made with four tomatoes to grant a bonus to unhappiness and boredom reduction. However, it mistakenly targets the removed pot of soup item, so the bonus is never applied.

History

Base.PotOfSoupRecipe

Version Description
Build 41.78 Item tag added with value HasMetal.
Build 41.65 CookingSound added with value BoilingFood.
DisplayCategory added with value Food.
WorldStaticModel changed from CookingPotGround to CookingPotSoup_Ground.
Build 41.54 CustomEatSound changed from DrinkingFromBottle to EatingSoup.
WorldStaticModel added with value CookingPotGround.
Build 41.51 Calories added with value 202.
Nutrition added with value 25.
Nutrition added with value 4.5.
Proteins added with value 14.
Weight changed from 4 to 3.
Build 41.26 EatType added with value Pot.
Build 41.12 StaticModel added with value CookingPot.
Build 40.16 BoredomChange removed.
Build 40.9 CustomEatSound changed from PZ_DrinkingFromBottle to DrinkingFromBottle.
Build 35.25b ThirstChange added with value -40.
Build 29.3 CustomEatSound added with value PZ_DrinkingFromBottle.
Build 26 Released on this version.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item PotOfSoupRecipe
	{
		DisplayName = Pot of Soup,
		DisplayCategory = Food,
		Type = Food,
		Weight = 3,
		Icon = PotFull,
		CookingSound = BoilingFood,
		EatType = Pot,
		IsCookable = TRUE,
		ReplaceOnUse = Pot,
		MinutesToCook = 50,
		MinutesToBurn = 100,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -40,
		ThirstChange = -40,
		UnhappyChange = -20,
		Calories = 202,
		Carbohydrates = 25,
		Lipids = 4.5,
		Proteins = 14,
		CustomContextMenu = Drink,
		CustomEatSound = EatingSoup,
		StaticModel = CookingPot,
		WorldStaticModel = CookingPotSoup_Ground,
		Tags = HasMetal,
	}

See also