Peanut Butter: Difference between revisions

From PZwiki
m (Removed {{clear}} line above ==Distribution==)
m (Automated Formatting)
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Peanut Butter
|name=Peanut Butter
|model=PeanutButter Model.png
|model=PeanutButter_Model.png
|icon=PeanutButter.png
|icon=PeanutButter.png
|icon_name=Peanut Butter
|icon_name=Peanut Butter
Line 20: Line 20:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=Base.PeanutButter
|item_id=Base.PeanutButter
}}'''Peanut butter''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].
}}
'''Peanut butter''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Line 30: Line 31:
===Evolved recipes===
===Evolved recipes===
Peanut butter is a [[cooking]] [[Recipe ingredients|ingredient]].
Peanut butter is a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|Soup=5|StirFry=5|Sandwich=5|Toast=5|ConeIcecream=5}}
{{EvolvedRecipesForItem|soup=5|stirfry=5|sandwich=5|toast=5|coneicecream=5}}


==Distribution==
==Distribution==
Line 38: Line 39:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="2"|generalstore
|rowspan="2"|generalstore
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
|[[crate]]
|[[crate]]
Line 52: Line 53:
|2
|2
|-
|-
| kitchen
|kitchen
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|}
|}
Peanut butter can be found in [[Containers#Kitchen Counter|kitchen counters]].
Peanut butter can be found in [[Containers#Kitchen Counter|kitchen counters]].
Line 63: Line 64:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 4615
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item PeanutButter
item PeanutButter
{
{
    DisplayName         = Peanut Butter,
DisplayName = Peanut Butter,
    DisplayCategory     = Food,
DisplayCategory = Food,
    Type               = Food,
Type = Food,
    Weight             = 0.3,
Weight = 0.3,
    Icon               = PeanutButter,
Icon = PeanutButter,
    EvolvedRecipe       = Soup:5;Stir fry Griddle Pan:5;Stir fry:5;Sandwich:5;Sandwich Baguette:5;Toast:5;ConeIcecream:5,
EvolvedRecipe = Soup:5;Stir fry Griddle Pan:5;Stir fry:5;Sandwich:5;Sandwich Baguette:5;Toast:5;ConeIcecream:5,
    FoodType           = NoExplicit,
FoodType = NoExplicit,
    Packaged           = TRUE,
Packaged = TRUE,
    HungerChange       = -25,
HungerChange = -25,
    UnhappyChange       = -15,
UnhappyChange = -15,
    Calories           = 2660,
Calories = 2660,
    Carbohydrates       = 128,
Carbohydrates = 128,
    Lipids             = 224,
Lipids = 224,
    Proteins           = 84,
Proteins = 84,
    WorldStaticModel   = PeanutButter,
WorldStaticModel = PeanutButter,
}
}
  }}
}}
}}
}}


Line 93: Line 95:
*[[Peanut Butter Sandwich]]
*[[Peanut Butter Sandwich]]


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

Revision as of 10:53, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Peanut Butter
PeanutButter Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-25
CaloriesCalories
2660
CarbohydratesCarbohydrates
128
ProteinsProteins
84
FatFat
224
Effect
UnhappinessMoodle Icon Unhappy.png
-15
Technical
Item ID
Base.PeanutButter

Peanut butter is a non-perishable food item.

Usage

Peanut butter can be eaten, providing the player with some positive effects. As it is non-perishable, peanut butter will never go stale or rotten.

Crafting

Main article: Cooking

Evolved recipes

Peanut butter is a cooking ingredient.

Product Nutrition
Soup
Soup
5
Stir Fry
Stir Fry
5
Sandwich
Sandwich
5
Ice Cream Cone
Ice Cream Cone
5
Toast
Toast
5

Distribution

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

Containers
Building/Room Container Rolls Chance
generalstore crate 4 1
crate 4 2
kitchen counter 4 1

Peanut butter can be found in kitchen counters.

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 PeanutButter
	{
		DisplayName = Peanut Butter,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = PeanutButter,
		EvolvedRecipe = Soup:5;Stir fry Griddle Pan:5;Stir fry:5;Sandwich:5;Sandwich Baguette:5;Toast:5;ConeIcecream:5,
		FoodType = NoExplicit,
		Packaged = TRUE,
		HungerChange = -25,
		UnhappyChange = -15,
		Calories = 2660,
		Carbohydrates = 128,
		Lipids = 224,
		Proteins = 84,
		WorldStaticModel = PeanutButter,
	}

See also