Dried White Beans: Difference between revisions

From PZwiki
(→‎Code: Codebox Update)
m (Minor)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{header/sandbox2|Project Zomboid|Items|Food|Vegetables}}
{{Header/sandbox2|Project Zomboid|Items|Food|Vegetables}}
{{page version|41.73}}
{{Page version|41.73}}
{{Infobox item
{{Infobox item
|name=Dried White Beans
|name=Dried White Beans
Line 21: Line 21:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=Base.DriedWhiteBeans
|item_id=Base.DriedWhiteBeans
}}'''Dried white beans''' are a [[Food#Non-Perishable|non-perishable]] food [[item]].
}}
'''Dried white beans''' are a [[Food#Non-Perishable|non-perishable]] food [[Items|item]].


==Usage==
==Usage==


===Consumable properties===
===Consumable properties===
Dried white beans do not need to be opened, instead can be eaten directly but will provide the player with thirst and unhappiness. These effects can be countered by adding dried chick peas to {{T|Recipe Ingredients#Soup & Stew Ingredients|{{Translation|soup}}}}, {{T|Recipe Ingredients#Soup & Stew Ingredients|{{Translation|stew}}}}, {{T|Recipe Ingredients#Rice & Pasta Ingredients|{{Translation|rice}}}}, and {{T|Recipe Ingredients#Rice & Pasta Ingredients|{{Translation|pasta}}}}.
Dried white beans do not need to be opened, instead can be eaten directly but will provide the player with thirst and unhappiness. These effects can be countered by adding dried chick peas to [[Recipe ingredients#Soup & Stew ingredients|soup]], [[Recipe ingredients#Soup & Stew ingredients|stew]], [[Recipe ingredients#Rice & Pasta ingredients|rice]], and [[Recipe ingredients#Rice & Pasta ingredients|pasta]].


==Crafting==
==Crafting==
Line 35: Line 36:
{{EvolvedRecipesForItem
{{EvolvedRecipesForItem
|Soup=10|Stew=10|Rice=10|Pasta=10|}}
|Soup=10|Stew=10|Rice=10|Pasta=10|}}
''Note: Currently, dried white beans can only added in rice/pasta pot, not rice/pasta sauce pan. This is likely a bug and maybe will be fixed later.''
''Note: Currently, dried white beans can only be added in rice/pasta pot, not rice/pasta sauce pan. This is likely a bug and maybe will be fixed later.''


==Distribution==
==Distribution==
Dried white beans can often be found in [[Containers#Kitchen Counter|kitchen counters]] and [[Containers#Shop Shelves|shop shelves]].
Dried white beans can often be found in [[Containers#Kitchen Counter|kitchen counters]] and [[Containers#Shop Shelves|shop shelves]].


== Code ==
==Code==
{{CodeBox
{{CodeBox
| {{CodeSnip
| {{CodeSnip
Line 82: Line 83:


{{Navbox food}}
{{Navbox food}}
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 23:32, 31 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Dried White Beans
DriedWhiteBeans Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
2
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-60
ThirstMoodle Icon Thirsty.png
+60
CaloriesCalories
2823
CarbohydratesCarbohydrates
527
ProteinsProteins
188
FatFat
10
Effect
UnhappinessMoodle Icon Unhappy.png
+40
Technical
Item ID
Base.DriedWhiteBeans

Dried white beans are a non-perishable food item.

Usage

Consumable properties

Dried white beans do not need to be opened, instead can be eaten directly but will provide the player with thirst and unhappiness. These effects can be countered by adding dried chick peas to soup, stew, rice, and pasta.

Crafting

Main article: Cooking

Evolved recipes

Dried white beans is a cooking ingredients.

Product Nutrition
Soup
Soup
10
Stew
Stew
10
Rice Pot/Saucepan
Rice Pot/Saucepan
10
Pasta Pot/Saucepan
Pasta Pot/Saucepan
10

Note: Currently, dried white beans can only be added in rice/pasta pot, not rice/pasta sauce pan. This is likely a bug and maybe will be fixed later.

Distribution

Dried white beans can often be found in kitchen counters and shop shelves.

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.73
item DriedWhiteBeans
{
    DisplayName = Dried White Beans,
    DisplayCategory = Food,
    Type = Food,
    Weight = 2,
    Icon = DriedWhiteBeans,
    EvolvedRecipe = Soup:10;Stew:10;RicePot:10;PastaPot:10,
    FoodType = Bean,
    Packaged = TRUE,
    HungerChange = -60,
    ThirstChange = 60,
    UnhappyChange = 40,
    Calories = 2823,
    Carbohydrates = 527,
    Lipids = 10,
    Proteins = 188,
    WorldStaticModel = DriedWhiteBeans_Ground,
    Tags = DriedFood,
    EvolvedRecipeName = White Bean,
}

See also