Beef Jerky: Difference between revisions

From PZwiki
mNo edit summary
m (Automated Formatting)
(42 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{Notice|Improve}}
{{Header|Project Zomboid|Items|Food|Protein}}
{{Consumables
{{Page version|41.78.16}}
|image = Jerky.png  
{{Infobox item
|hunger = -30
|name=Beef Jerky
|weight = ??
|model=BeefJerky_Model.png
}} <!--/infobox-->
|icon=BeefJerky.png
ahh.. dried "meat" product. Often found in refrigerators.  
|icon_name=Beef Jerky
<!--GENERAL-->
|category=Food
|weight=0.2
|packaged=True
<!--NUTRITION-->
|hunger_change=-20
|calories=100
|lipids=1
|proteins=1
|carbohydrates=6
<!--TECHNICAL DETAILS-->
|item_id=Base.BeefJerky
}}
'''Beef jerky''' is a non-perishable [[food]] [[Items|item]].


== Effects ==
==Usage==
<!--list of effects here-->
Beef jerky can be eaten, providing the player with some positive effects. As it is non-perishable, beef jerky will never go stale or rotten.
Hunger: -30


{{Navbox/Consumables}}
==Crafting==


<!--== Crafting ==
===Evolved recipes===
ITEM NAME can be used in the following recipes:
Beef jerky is a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|stew=10|pie=10|stirfry=10|sandwich=5|salad=5|roastedvegetables=10|rice=10|pasta=10}}


{| class="wikitable" width="550" style="text-align:center;"
==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
|-
|artstore
|[[shelves]]
|4
|8
|-
|bandkitchen
|[[counter]]
|4
|8
|-
|rowspan="4"|butcher
|[[shelves]]
|4
|1
|-
|[[shelves]]
|4
|1
|-
|[[shelves]]
|4
|2
|-
|[[shelves]]
|4
|2
|-
|rowspan="2"|closet
|[[crate]]
|4
|8
|-
|[[crate]]
|4
|8
|-
|-
! Ingredients || Other Items || Output || Description
|gasstorage
|[[crate]]
|4
|8
|-
|-
| Ingredient + Ingredient || Oven/None || What the recipe makes || Brief description of what it makes.
|kitchen
|}-->
|[[counter]]
|4
|6
|}
Beef jerky can be found in kitchens, butchers and convenience stores.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2255
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BeefJerky
{
DisplayName = Beef Jerky,
DisplayCategory = Food,
Type = Food,
Weight = 0.2,
Icon = BeefJerky,
EvolvedRecipe = Stew:10;Pie:10;Stir fry Griddle Pan:10;Stir fry:10;Sandwich:5;Sandwich Baguette:5;Salad:5;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10,
FoodType = Beef,
Packaged = TRUE,
HungerChange = -20,
Calories = 100,
Carbohydrates = 6,
Lipids = 1,
Proteins = 1,
StaticModel = BeefJerky,
WorldStaticModel = BeefJerky,
}
}}
}}
 
==See also==
*[[Dehydrated Meat Stick]]
*[[Recipe ingredients]]
 
{{Navbox items|meat}}
 


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

Revision as of 06:30, 14 April 2024

Project ZomboidItemsFoodProteinBeef Jerky
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Beef Jerky
BeefJerky Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Packaged
True
Nutrition
HungerMoodle Icon Hungry.png
-20
CaloriesCalories
100
CarbohydratesCarbohydrates
6
ProteinsProteins
1
FatFat
1
Technical
Item ID
Base.BeefJerky

Beef jerky is a non-perishable food item.

Usage

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

Crafting

Evolved recipes

Beef jerky is a cooking ingredient.

Product Nutrition
Stew
Stew
10
Salad
Salad
5
Stir Fry
Stir Fry
10
Roasted Vegetables
Roasted Vegetables
10
Sandwich
Sandwich
5
Pie (savory)
Pie (savory)
10
Rice Pot/Saucepan
Rice Pot/Saucepan
10
Pasta Pot/Saucepan
Pasta Pot/Saucepan
10

Distribution

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

Containers
Building/Room Container Rolls Chance
artstore shelves 4 8
bandkitchen counter 4 8
butcher shelves 4 1
shelves 4 1
shelves 4 2
shelves 4 2
closet crate 4 8
crate 4 8
gasstorage crate 4 8
kitchen counter 4 6

Beef jerky can be found in kitchens, butchers and convenience stores.

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 BeefJerky
	{
		DisplayName = Beef Jerky,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = BeefJerky,
		EvolvedRecipe = Stew:10;Pie:10;Stir fry Griddle Pan:10;Stir fry:10;Sandwich:5;Sandwich Baguette:5;Salad:5;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10,
		FoodType = Beef,
		Packaged = TRUE,
		HungerChange = -20,
		Calories = 100,
		Carbohydrates = 6,
		Lipids = 1,
		Proteins = 1,
		StaticModel = BeefJerky,
		WorldStaticModel = BeefJerky,
	}

See also