Crackers: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: CodeBox update)
Line 32: Line 32:
Crackers are often found in [[Vehicles|vehicle]] trunks and [[Containers#Crates|crates]] located in kitchens.  
Crackers are often found in [[Vehicles|vehicle]] trunks and [[Containers#Crates|crates]] located in kitchens.  


==Code==
{{CodeBox
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
| {{CodeSnip
{{Retrieved|version=41.73}}
  | lang = java
<pre>
  | line = false
    item Crackers
  | source = items_food.txt
{
  | retrieved = true
DisplayName = Crackers,
  | version = 41
DisplayCategory = Food,
  | incver = 73
Type = Food,
  | code =
Weight = 0.1,
item Crackers
Icon = Crackers,
{
EvolvedRecipe = Soup:5;Stew:5,
  DisplayName         = Crackers,
FoodType = NoExplicit,
  DisplayCategory     = Food,
HungerChange = -5,
  Type               = Food,
Calories = 70,
  Weight             = 0.1,
Carbohydrates = 12,
  Icon               = Crackers,
Lipids = 6,
  EvolvedRecipe       = Soup:5;Stew:5,
Proteins = 1,
  FoodType           = NoExplicit,
CustomEatSound = EatingCrispy,
  HungerChange       = -5,
WorldStaticModel = Crackers_Ground,
  Calories           = 70,
}
  Carbohydrates       = 12,
</pre>
  Lipids             = 6,
  Proteins           = 1,
  CustomEatSound     = EatingCrispy,
  WorldStaticModel   = Crackers_Ground,
}
  }}
}}


{{Navbox food}}
{{Navbox food}}
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 09:16, 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.
Crackers
Crackers Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
70
CarbohydratesCarbohydrates
12
ProteinsProteins
1
FatFat
6
Technical
Item ID
Base.Crackers

Crackers are a non-perishable food item.

Usage

Crackers can be eaten, providing the player with some positive effects.

Crafting

Main article: Cooking

Evolved recipes

Crackers are a cooking ingredient.

Product Nutrition
Soup
Soup
5
Stew
Stew
5

Distribution

Crackers are often found in vehicle trunks and crates located in kitchens.

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 Crackers
{
  DisplayName         = Crackers,
  DisplayCategory     = Food,
  Type                = Food,
  Weight              = 0.1,
  Icon                = Crackers,
  EvolvedRecipe       = Soup:5;Stew:5,
  FoodType            = NoExplicit,
  HungerChange        = -5,
  Calories            = 70,
  Carbohydrates       = 12,
  Lipids              = 6,
  Proteins            = 1,
  CustomEatSound      = EatingCrispy,
  WorldStaticModel    = Crackers_Ground,
}