Beef Jerky: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: CodeBox update)
Line 34: Line 34:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.73}}
| {{CodeSnip
<pre>    item BeefJerky
  | lang = java
{
  | line = false
DisplayName = Beef Jerky,
  | source = items_food.txt
DisplayCategory = Food,
  | retrieved = true
Type = Food,
  | version = 41
Weight = 0.2,
  | incver = 73
Icon = BeefJerky,
  | code =
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,
item BeefJerky
FoodType = Beef,
{
Packaged = TRUE,
  DisplayName         = Beef Jerky,
HungerChange = -20,
  DisplayCategory     = Food,
Calories = 100,
  Type               = Food,
Carbohydrates = 6,
  Weight             = 0.2,
Lipids = 1,
  Icon               = BeefJerky,
Proteins = 1,
  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,
StaticModel = BeefJerky,
  FoodType           = Beef,
WorldStaticModel = BeefJerky,
  Packaged           = TRUE,
}</pre>
  HungerChange       = -20,
  Calories           = 100,
  Carbohydrates       = 6,
  Lipids             = 1,
  Proteins           = 1,
  StaticModel         = BeefJerky,
  WorldStaticModel   = BeefJerky,
}
  }}
}}


==See also==
==See also==

Revision as of 10:49, 31 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
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

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.73
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