Pickles: Difference between revisions

From PZwiki
(Created page with "{{Notice|Improve}} {{languages}} {{Consumables |image = SNACKPickles.png |weight = 0.1 }} == Effects == Hungry: -5 == Code == <nowiki>item Pickles { Hung...")
 
m (Automated Formatting)
(31 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Notice|Improve}}
{{Header|Project Zomboid|Items|Food|Vegetables}}
{{languages}}
{{Page version|41.78.16}}
{{Consumables
{{Infobox item
|image = SNACKPickles.png
|name=Pickles
|weight = 0.1
|model=Pickles_Model.png
|icon=Pickles.png
|icon_name=Pickles
<!--GENERAL-->
|category=Food
|weight=0.1
<!--NUTRITION-->
|hunger_change=-5
|calories=5
|lipids=0
|proteins=0
|carbohydrates=1
<!--TECHNICAL DETAILS-->
|item_id=Base.Pickles
}}
}}
'''Pickles''' are a non-perishable [[food]] [[Items|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 [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|sandwich=5|burger=5|salad=5|rice=5|pasta=5}}


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


== Effects ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
[[Hunger]]: -5
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="3"|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 [[refrigerator]]s and [[Containers#Displays|grocery displays]].


== Code ==
==Code==
<nowiki>item Pickles
{{CodeBox
    {
| {{CodeSnip
        HungerChange = -5,
  | lang = java
        Weight = 0.1,
  | line = true
        AlwaysWelcomeGift = true,
  | start = 5670
        Type = Food,
  | source = items_food.txt
        DisplayName = Pickles,
  | retrieved = true
        Icon = Pickles,
  | version = 41.78.16
        EvolvedRecipe = Sandwich:5;Burger:5;Salad:5,
  | code =
        FoodType   =   NoExplicit,
item Pickles
    }</nowiki>
{
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==
*[[Edamame]]
*[[Zucchini]]
 
{{Navbox items|plants}}


== See Also ==
[[Recipe_Ingredients]]<br>
[[Recipe Ingredients#Sandwich & Burger Ingredients|Sandwich & Burger Ingredients]]<br>
[[Recipe Ingredients#Salad Ingredients|Salad Ingredients]]


<!-- {{Navbox/Consumables}}
[[Category:Non-perishable food]]
[[Category:Consumables]]
[[Category: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