More actions
(Redirected from Soup)
Pot of Soup
Properties
Days fresh
3 days
Days until rotten
5 days
Cooking
Time until cooked
50 minutes
Time until burned
100 minutes
Technical
Tags
Item ID
Base.PotOfSoupRecipe
Soup is the product of an evolved recipe.
Soup vs stew
- Soup can use fish roe, bell pepper, dandelions, seaweed, acorn, dry ramen noodles, peanut butter, peanuts, lemon, lime, nettles, thistles, and rose hips as ingredients, but stew cannot.
- Stew can use bacon, bacon strips, bacon bits, baloney slices, beef jerky, ground beef, meat patty, pepperoni, salami slices, sausage, steak, canned chili, canned corned beef, canned sardines, canned spaghetti bolognese, canned tuna and gravy as ingredients, but soup cannot.
- Soup takes 50 minutes to cook, and burns in an additional 50 minutes (100 total).
- Stew takes 70 minutes to cook, and burns in an additional 70 minutes (140 total).
- Soup can be crafted initially from a spice, but spices can only be added to stew after it has been crafted with a regular ingredient.
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 |
---|---|---|---|---|---|
Bowl of Soup ×2 |
Empty Bowl ×2 Soup ×1 |
none | none | none | none |
Bowl of Soup ×4 |
Empty Bowl ×4 Soup ×1 |
none | none | none | none |
Starting item
Ingredients
Meats
Fruits & vegetables
Mushroom
Herb
Other
Condiments & spices
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 snippet! This section contains source code from Project ZomboidShow / Hide
Source: ProjectZomboid\media\scripts\items_food.txt
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,
}