Cereal: Difference between revisions

From PZwiki
m (Automated linking update.)
m (Update shorthand parameters)
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Grains}}
{{Header|Project Zomboid|Items|Food|Grains}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Cereal
|name=Cereal
|model=Cereal Model.png
|model=Cereal_Model.png
|icon=Cereal.png
|icon=Cereal.png
|icon_name=Cereal
|icon_name=Cereal
Line 12: Line 12:
|category=Food
|category=Food
|weight=0.2
|weight=0.2
|packaged = Yes
|packaged=Yes
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-40
|hunger_change=-40
Line 22: Line 22:
|item_id=Base.Cereal
|item_id=Base.Cereal
}}
}}
'''Cereal''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]]]].
 
'''Cereal''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Line 46: Line 47:
! 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="2"|breakroom
|rowspan="2"|breakroom  
| [[counter]]
|[[counter]]  
| 4
|4  
| 6
|6
|-
|-
|[[overhead]]
|[[overhead]]  
|4
|4  
|6
|6
|-
|-
| rowspan="5"|cafeteriakitchen
|rowspan="5"|cafeteriakitchen  
| [[crate]]
|[[crate]]  
| 4
|4  
| 1
|1
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|1
|1
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|2
|2
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|2
|2
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|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]]  
|4
|4  
|1
|1
|-
|-
| prisoncells
|prisoncells  
| [[wardrobe]]
|[[wardrobe]]  
| 4
|4  
| 4
|4
|}
|}
Cereal is often found in [[Containers#Kitchen_Counter|kitchen counters]].
Cereal is often found in [[Containers#Kitchen_Counter|kitchen counters]].
Line 111: Line 112:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 3830
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Cereal
item Cereal
{
{
    DisplayName         = Cereal,
DisplayName = Cereal,
    DisplayCategory     = Food,
DisplayCategory = Food,
    Type               = Food,
Type = Food,
    Weight             = 0.2,
Weight = 0.2,
    Icon               = Cereal,
Icon = Cereal,
    Packaged           = TRUE,
Packaged = TRUE,
    HungerChange       = -40,
HungerChange = -40,
    Calories           = 2360,
Calories = 2360,
    Carbohydrates       = 572,
Carbohydrates = 572,
    Lipids             = 26,
Lipids = 26,
    Proteins           = 52,
Proteins = 52,
    WorldStaticModel   = Cereal,
WorldStaticModel = Cereal,
}
}  
  }}
}}
}}
}}


Line 140: Line 142:


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

Revision as of 02:30, 28 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Cereal
Cereal Model.png
Bowl of Cereal Bowl of Cereal
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-40
CaloriesCalories
2360
CarbohydratesCarbohydrates
572
ProteinsProteins
52
FatFat
26
Technical
Item ID
Base.Cereal

Cereal is a non-perishable food item.

Usage

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

Trapping

Main article: Trapping

Cereal can be used as bait in traps to capture small birds and squirrels.

Crafting

Main article: Cooking

Cooking

Cereal can be used to make a bowl of cereal.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Oatmeal.png
Bowl of Cereal
0.75 Cooking none Bowl.png
Bowl
(consumed)
Cereal.png
Cereal
(5 units)

(consumed)

(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
breakroom counter 4 6
overhead 4 6
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
prisoncells wardrobe 4 4

Cereal is often found in kitchen counters.

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 Cereal
	{
		DisplayName = Cereal,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Cereal,
		Packaged = TRUE,
		HungerChange = -40,
		Calories = 2360,
		Carbohydrates = 572,
		Lipids = 26,
		Proteins = 52,
		WorldStaticModel = Cereal,
	}

See also