Pickles: Difference between revisions

From PZwiki
m (→‎Evolved recipes: Update link - avoid redirect)
m (Automated Formatting)
(20 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Vegetables}}
|display_name=Pickles
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Pickles
|image=Pickles_Model.png
|model=Pickles_Model.png
|image_width=200px
|icon=Pickles.png
|alternate_image=Pickles.png
|icon_name=Pickles
|alternate_name=Pickles
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 18: Line 16:
|carbohydrates=1
|carbohydrates=1
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Pickles
|item_id=Base.Pickles
}}'''Pickles''' are a [[Food#Non-Perishable|non-perishable]] food [[item]].
}}
'''Pickles''' are a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
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 31: Line 29:


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! 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]].
Pickles can be found in [[refrigerator]]s and [[Containers#Displays|grocery displays]].


==Code==
==Code==
'''''From item_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
    item Pickles
  | line = true
    {
  | start = 5670
        DisplayCategory = Food,
  | source = items_food.txt
        HungerChange = -5,
  | retrieved = true
        Weight = 0.1,
  | version = 41.78.16
        AlwaysWelcomeGift = true,
  | code =
        Type = Food,
item Pickles
        DisplayName = Pickles,
{
        Icon = Pickles,
DisplayName = Pickles,
        EvolvedRecipe = Sandwich:5;Sandwich Baguette:5;Burger:5;Salad:5;RicePot:5;RicePan:5;PastaPot:5;PastaPan:5,
DisplayCategory = Food,
        FoodType   =   NoExplicit,
Type = Food,
        Carbohydrates = 1,
Weight = 0.1,
        Proteins = 0,
Icon = Pickles,
        Lipids = 0,
EvolvedRecipe = Sandwich:5;Sandwich Baguette:5;Burger:5;Salad:5;RicePot:5;RicePan:5;PastaPot:5;PastaPan:5;ConeIcecream:5,
        Calories = 5,
FoodType = NoExplicit,
        WorldStaticModel = Pickles,
HungerChange = -5,
    }
Calories = 5,
</pre>
Carbohydrates = 1,
Lipids = 0,
Proteins = 0,
WorldStaticModel = Pickles,
EvolvedRecipeName = Pickle,
}
}}
}}


==See also==
==See also==
Line 60: Line 118:
*[[Zucchini]]
*[[Zucchini]]


{{Navbox food}}
{{Navbox items|plants}}
 
 
[[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