Crackers: Difference between revisions

From PZwiki
m (→‎Code: Fixed version number)
m (Automated Formatting)
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Crackers}}
{{Header|Project Zomboid|Items|Food|Grains}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=14}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Crackers
{{Infobox item
|name_colour=Food
|name=Crackers
|name_text_colour=Food
|model=Crackers_Model.png
|image=
|icon=Crackers.png
|alternate_image=
|alternate_name=
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.1
|weight=0.1
|function=
|packaged=True
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-5
|hunger_change=-5
|thirst_change=
|calories=70
|calories=70
|lipids=6
|lipids=6
Line 21: Line 15:
|carbohydrates=12
|carbohydrates=12
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=
|item_id=Base.Crackers
}}'''Crackers''' are a [[Food#Non-Perishable|non-perishable]] food [[item]].  
}}
'''Crackers''' are a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Crackers can be eaten to restore hunger.
Crackers can be eaten, providing the player with some positive effects.
 
==Crafting==
{{Main|Cooking}}
 
===Evolved recipes===
Crackers are a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|soup=5|stew=5}}


==Distribution==
==Distribution==
Crackers are often found in [[Vehicles|vehicle]] trunks and [[Containers#Crates|crates]] located in kitchens.  
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="5"|cafeteriakitchen
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|-
|generalstore
|[[shelves]]
|4
|1
|-
|grocerystorage
|[[crate]]
|4
|1
|-
|rowspan="2"|kitchen
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|1
|}
Crackers are often found in [[Vehicles|vehicle]] trunks and [[Containers#Crates|crates]] located in kitchens.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 7224
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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==
{{Navbox items|plants}}


== Code ==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
<pre>
    item Crackers
    {
        Type                =      Food,
        DisplayName        =      Crackers,
        Icon                =      Crackers,
        Weight              =      0.1,
        HungerChange        =      -5,
        Carbohydrates = 12,
        Proteins = 1,
        Lipids = 6,
        Calories = 70,
        CustomEatSound = EatingCrispy,
        WorldStaticModel = Crackers_Ground,
    }
</pre>


{{Navbox/Consumables}}
[[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