Pickles: Difference between revisions

From PZwiki
m (Updated distribution table)
m (Automated Formatting)
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Pickles
|name=Pickles
Line 18: Line 18:
|item_id=Base.Pickles
|item_id=Base.Pickles
}}
}}
'''Pickles''' are a non-perishable [[food]] [[Items|item]].
'''Pickles''' are a non-perishable [[food]] [[Items|item]].


Line 25: Line 24:


==Crafting==
==Crafting==
===Evolved recipes===
===Evolved recipes===
Pickles are a cooking [[Recipe ingredients|ingredient]].
Pickles are a cooking [[Recipe ingredients|ingredient]].
Line 41: Line 39:
! style="width: 3.2em;" | Chance
! style="width: 3.2em;" | Chance
|-
|-
|rowspan="3"|all  
|rowspan="3"|all
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|bar  
|bar
|[[counter]]  
|[[counter]]
|4  
|4
|6
|6
|-
|-
|burgerkitchen  
|burgerkitchen
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|deepfry_kitchen  
|deepfry_kitchen
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|dinerkitchen  
|dinerkitchen
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|restaurantkitchen  
|restaurantkitchen
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|-
|-
|spiffoskitchen  
|spiffoskitchen
|[[fridge]]  
|[[fridge]]
|4  
|4
|6
|6
|}
|}
Line 90: Line 88:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
   | source = item_food.txt
  | start = 5670
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Pickles
item Pickles
{
{
    DisplayCategory     = Food,
DisplayName = Pickles,
    HungerChange        = -5,
DisplayCategory = Food,
    Weight             = 0.1,
Type = Food,
    AlwaysWelcomeGift  = true,
Weight = 0.1,
    Type                = Food,
Icon = Pickles,
    DisplayName        = Pickles,
EvolvedRecipe = Sandwich:5;Sandwich Baguette:5;Burger:5;Salad:5;RicePot:5;RicePan:5;PastaPot:5;PastaPan:5;ConeIcecream:5,
    Icon               = Pickles,
FoodType = NoExplicit,
    EvolvedRecipe       = Sandwich:5;Sandwich Baguette:5;Burger:5;Salad:5;RicePot:5;RicePan:5;PastaPot:5;PastaPan:5,
HungerChange = -5,
    FoodType           = NoExplicit,
Calories = 5,
    Carbohydrates       = 1,
Carbohydrates = 1,
    Proteins            = 0,
Lipids = 0,
    Lipids              = 0,
Proteins = 0,
    Calories            = 5,
WorldStaticModel = Pickles,
    WorldStaticModel    = Pickles,
EvolvedRecipeName = Pickle,
}
}
  }}
}}
}}
}}


Line 119: Line 118:
*[[Zucchini]]
*[[Zucchini]]


{{Navbox food}}
{{Navbox items|plants}}
 


[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 10:58, 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]
Pickles
Pickles Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
5
CarbohydratesCarbohydrates
1
ProteinsProteins
0
FatFat
0
Technical
Item ID
Base.Pickles

Pickles are a non-perishable food item.

Usage

Pickles can be eaten, providing the player with some positive effects, however it is more effective when used in cooking. As it is non-perishable, pickles will never go stale or rotten.

Crafting

Evolved recipes

Pickles are a cooking ingredient.

Product Nutrition
Salad
Salad
5
Sandwich
Sandwich
5
Burger
Burger
5
Rice Pot/Saucepan
Rice Pot/Saucepan
5
Pasta Pot/Saucepan
Pasta Pot/Saucepan
5

Distribution

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

Containers
Building/Room Container Rolls Chance
all fridge 4 6
fridge 4 6
fridge 4 6
bar counter 4 6
burgerkitchen fridge 4 6
deepfry_kitchen fridge 4 6
dinerkitchen fridge 4 6
restaurantkitchen fridge 4 6
spiffoskitchen fridge 4 6

Pickles can be found in refrigerators and grocery displays.

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 Pickles
	{
		DisplayName = Pickles,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Pickles,
		EvolvedRecipe = Sandwich:5;Sandwich Baguette:5;Burger:5;Salad:5;RicePot:5;RicePan:5;PastaPot:5;PastaPan:5;ConeIcecream:5,
		FoodType = NoExplicit,
		HungerChange = -5,
		Calories = 5,
		Carbohydrates = 1,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = Pickles,
		EvolvedRecipeName = Pickle,
	}

See also