Crackers: Difference between revisions

From PZwiki
(Automated update of distribution section)
m (Automated Formatting)
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Grains}}
{{header/sandbox2|Project Zomboid|Items|Food|Grains}}
{{Page version|41.78.16}}
{{page version|41.73}}
{{Infobox item
{{Infobox item
|name=Crackers
|name=Crackers
|model=Crackers Model.png
|model=Crackers_Model.png
|icon=Crackers.png
|icon=Crackers.png
<!--GENERAL-->
<!--GENERAL-->
Line 17: Line 16:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=Base.Crackers
|item_id=Base.Crackers
}}'''Crackers''' are a [[Food#Non-Perishable|non-perishable]] food [[item]].  
}}
'''Crackers''' are a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Line 27: Line 27:
===Evolved recipes===
===Evolved recipes===
Crackers are a [[cooking]] [[Recipe ingredients|ingredient]].
Crackers are a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|Soup=5|Stew=5}}
{{EvolvedRecipesForItem|soup=5|stew=5}}


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 36: Line 35:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="5"|cafeteriakitchen  
|rowspan="5"|cafeteriakitchen
| [[crate]]  
|[[crate]]
| 4  
|4
| 1
|1
|-
|-
|[[crate]]
|[[crate]]
Line 62: Line 61:
|5
|5
|-
|-
| generalstore  
|generalstore
| [[shelves]]  
|[[shelves]]
| 4  
|4
| 1
|1
|-
|-
| grocerystorage  
|grocerystorage
| [[crate]]  
|[[crate]]
| 4  
|4
| 1
|1
|-
|-
| rowspan="2"|kitchen  
|rowspan="2"|kitchen
| [[counter]]  
|[[counter]]
| 4  
|4
| 1
|1
|-
|-
|[[counter]]
|[[counter]]
Line 81: Line 80:
|1
|1
|}
|}
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==
==Code==
Line 87: Line 86:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 7224
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 73
   | code =
   | code =
item Crackers
item Crackers
{
{
  DisplayName         = Crackers,
DisplayName = Crackers,
  DisplayCategory     = Food,
DisplayCategory = Food,
  Type               = Food,
Type = Food,
  Weight             = 0.1,
Weight = 0.1,
  Icon               = Crackers,
Icon = Crackers,
  EvolvedRecipe       = Soup:5;Stew:5,
EvolvedRecipe = Soup:5;Stew:5,
  FoodType           = NoExplicit,
FoodType = NoExplicit,
  HungerChange       = -5,
HungerChange = -5,
  Calories           = 70,
Calories = 70,
  Carbohydrates       = 12,
Carbohydrates = 12,
  Lipids             = 6,
Lipids = 6,
  Proteins           = 1,
Proteins = 1,
  CustomEatSound     = EatingCrispy,
CustomEatSound = EatingCrispy,
  WorldStaticModel   = Crackers_Ground,
WorldStaticModel = Crackers_Ground,
}
}
  }}
}}
}}  
}}
 
==See also==
{{Navbox items|plants}}
 


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

Revision as of 07:50, 14 April 2024

Project ZomboidItemsFoodGrainsCrackers
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
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

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

Containers
Building/Room Container Rolls Chance
cafeteriakitchen crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5
generalstore shelves 4 1
grocerystorage crate 4 1
kitchen counter 4 1
counter 4 1

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

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 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,
	}

See also