Dried Chick Peas: Difference between revisions

From PZwiki
(Created the page)
 
m (Distribution table update)
(29 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages|Dried Chickpeas}}
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|Vegetables|type=Food|version=Version 41}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Dried Chick Peas
{{Infobox item
|name_colour=Food
|name=Dried Chick Peas
|name_text_colour=Food
|model=DriedChickPeas_Model.png
|image=DriedChickpeas.png
|icon=DriedChickpeas.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=2.0
|weight=2.0
|packaged=Yes
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-60
|hunger_change=-60
Line 16: Line 17:
|carbohydrates=544
|carbohydrates=544
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=40
|unhappy_change=+40
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.DriedChickpeas
|item_id=Base.DriedChickpeas
}}'''Dried Chickpeas''' are a [[Food#Non-Perishable|non-perishable]] food [[item]].
}}
'''Dried chick peas''' are a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Dried chickpeas do not need to be opened, but can be eaten from directly or added as an ingredient to other recipes.
===Consumable properties===
Dried chick peas 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]].


===Consumable properties===
==Crafting==
Dried chickpeas can be eaten on their own but will provide the player with thirst and unhappiness. These effects can be countered by adding dried chickpeas 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}}}}.
{{Main|Cooking}}
 
===Evolved recipes===
Dried chick peas are a [[cooking]] [[Recipe ingredients|ingredients]].
{{EvolvedRecipesForItem|soup=10|stew=10|rice=10|pasta=10}}
''Note: Currently, dried chick peas 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 chickpeas can often be found in [[Containers#Kitchen Counter|kitchen counters]] and [[Containers#Shop Shelves|shop shelves]].
The loot distributions can be found in the table(s) below.


== Code ==
<!--BOT FLAG|DriedChickpeas|41.78.16-->
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{clear}}
<div class="togglebox theme-red">
    <div>DriedChickpeas distribution
        <span class="mw-customtoggle-togglebox-DriedChickpeas" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-DriedChickpeas">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|FoodBox}}
    | 15
    | 5.0
    |-
    | all
    | {{ll|GroceryBag1}}
    | 1
    | 0.8
    |-
    | all
    | {{ll|GroceryBag2}}
    | 1
    | 4.0
    |-
    | generalstore
    | {{ll|shelves}}
    | 4
    | 8.0
    |-
    | grocerystorage
    | {{ll|crate}}
    | 4
    | 0.8
    |-
    | italiankitchen
    | {{ll|counter}}
    | 4
    | 5.0
    |-
    | kitchen
    | {{ll|counter}}
    | 4
    | 5.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-DriedChickpeas" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|DriedChickpeas|41.78.16-->
Dried chick peas can often be found in [[Containers#Kitchen Counter|kitchen counters]] and [[Containers#Shop Shelves|shop shelves]].


''Dried Chickpeas'' [[File:DriedChickpeas.png|32px]]
==Code==
{{Retrieved|version=41}}
{{CodeBox
<pre>    item DriedChickpeas
| {{CodeSnip
  | lang = java
  | line = true
  | start = 8274
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item DriedChickpeas
{
{
DisplayCategory = Food,
DisplayName = Dried Chick Peas,
        Weight = 2,
DisplayCategory = Food,
        Type = Food,
Type = Food,
        DisplayName = Dried Chick Peas,
Weight = 2,
        Icon = DriedChickpeas,
Icon = DriedChickpeas,
        HungerChange    =   -60,
EvolvedRecipe = Soup:10;Stew:10;RicePot:10;PastaPot:10,
        UnhappyChange  =   40,
FoodType = Bean,
        ThirstChange    =   60,
Packaged = TRUE,
        Carbohydrates = 544,
HungerChange = -60,
        Proteins = 181,
ThirstChange = 60,
        Lipids = 0,
UnhappyChange = 40,
        Calories = 2851,
Calories = 2851,
        Packaged = TRUE,
Carbohydrates = 544,
        EvolvedRecipe = Soup:10;Stew:10;RicePot:10;PastaPot:10,
Lipids = 0,
        FoodType    =   Vegetables,
Proteins = 181,
        WorldStaticModel = DriedChickpeas_Ground,
WorldStaticModel = DriedChickpeas_Ground,
}</pre>
Tags = DriedFood,
EvolvedRecipeName = Chick Pea,
}
}}
}}


==See also==
==See also==
Line 62: Line 134:
*[[Dried White Beans]]
*[[Dried White Beans]]


{{Navbox_food}}
{{Navbox items|plants}}
 
 
[[Category:Non-perishable food]]

Revision as of 15:23, 24 April 2024

Project ZomboidItemsFoodVegetablesDried Chick Peas
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Dried Chick Peas
DriedChickPeas Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
2.0
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-60
ThirstMoodle Icon Thirsty.png
+60
CaloriesCalories
2851
CarbohydratesCarbohydrates
544
ProteinsProteins
181
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
+40
Technical
Item ID
Base.DriedChickpeas

Dried chick peas are a non-perishable food item.

Usage

Consumable properties

Dried chick peas 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 chick peas are 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 chick peas 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

The loot distributions can be found in the table(s) below.

DriedChickpeas distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all FoodBox 15 5.0
all GroceryBag1 1 0.8
all GroceryBag2 1 4.0
generalstore shelves 4 8.0
grocerystorage crate 4 0.8
italiankitchen counter 4 5.0
kitchen counter 4 5.0

Dried chick peas 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.78.16
item DriedChickpeas
	{
		DisplayName = Dried Chick Peas,
		DisplayCategory = Food,
		Type = Food,
		Weight = 2,
		Icon = DriedChickpeas,
		EvolvedRecipe = Soup:10;Stew:10;RicePot:10;PastaPot:10,
		FoodType = Bean,
		Packaged = TRUE,
		HungerChange = -60,
		ThirstChange = 60,
		UnhappyChange = 40,
		Calories = 2851,
		Carbohydrates = 544,
		Lipids = 0,
		Proteins = 181,
		WorldStaticModel = DriedChickpeas_Ground,
		Tags = DriedFood,
		EvolvedRecipeName = Chick Pea,
	}

See also