Peanuts: Difference between revisions

From PZwiki
(updated to 41.68 + added model + navbox)
Line 1: Line 1:
{{languages|Peanuts}}
{{languages}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=14}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=68}}{{Infobox food
|display_name=Peanuts
|display_name=Peanuts
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Peanut_120px.png
|image=Peanuts_Model.png
|image_width=150px
|alternate_image=Peanut.png
|alternate_name=Peanuts
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 39: Line 43:


== Code ==
== Code ==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=14}}
{{Retrieved|version=41|incver=68}}
<pre> item Peanuts
<pre>   item Peanuts
HungerChange = -8,
    {
Weight = 0.2,
        DisplayCategory = Food,
Type = Food,
        HungerChange = -8,
DisplayName = Peanuts,
        Weight = 0.2,
Icon = Peanut,
        Type = Food,
EvolvedRecipe = RicePot:8;RicePan:8,
        DisplayName = Peanuts,
FoodType = NoExplicit,
        Icon = Peanut,
        Carbohydrates = 4.57,
        EvolvedRecipe = RicePot:8;RicePan:8,
        Proteins = 7.31,
        FoodType = NoExplicit,
        Lipids = 13.96,
        Carbohydrates = 4.57,
        Calories = 161,
        Proteins = 7.31,
        CantBeFrozen = TRUE,</pre>
        Lipids = 13.96,
        Calories = 161,
        CantBeFrozen = TRUE,
        WorldStaticModel = Peanuts,
    }</pre>


==See also==
==See also==
*[[Sunflower Seeds]]
*[[Sunflower Seeds]]
*[[Peanut Butter]]
*[[Peanut Butter Sandwich]]


{{Navbox/Consumables}}
{{Navbox_food}}

Revision as of 05:47, 14 March 2022

Peanuts
Peanuts
Peanuts
General
Category Food
Encumbrance
Heavy Load
0.2
Nutrition
Hunger
Hunger
-8
Calories
Calories
161
Carbohydrates
Carbohydrates
4.57
Proteins
Proteins
7.31
Fat
Fat
13.96
Technical details
Item ID Base.Peanuts

Peanuts are a non-perishable food item.

Usage

Trapping

Main article: Trapping

Peanuts can be used as bait in traps to capture Squirrels.

Consumable properties

Peanuts can be eaten, providing the player with some positive effects.

Crafting

Cooking

Main article: Cooking

Peanuts can be used as an ingredient in some custom recipes.

Evolved recipes

Product Nutrition
Rice Pot/Saucepan
Rice Pot/Saucepan
8

Distribution

Peanuts can be found in a bar, or motel room. As of build 41, they can also be found while foraging.

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.68

    item Peanuts
    {
        DisplayCategory = Food,
        HungerChange	=	-8,
        Weight	=	0.2,
        Type	=	Food,
        DisplayName	=	Peanuts,
        Icon	=	Peanut,
        EvolvedRecipe = RicePot:8;RicePan:8,
        FoodType = NoExplicit,
        Carbohydrates = 4.57,
        Proteins = 7.31,
        Lipids = 13.96,
        Calories = 161,
        CantBeFrozen = TRUE,
        WorldStaticModel = Peanuts,
    }

See also