Bowl of Oatmeal: Difference between revisions

From PZwiki
m (Remove obsolete template)
m (Automated Formatting)
 
(21 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Prepared food}}
|display_name=Bowl of Oatmeal
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Bowl of Oatmeal
|image=Oatmeal.png
|model=BowlRamen_Model.png
|alternate_image=OatsRaw.png
|icon=Oatmeal.png
|alternate_name=Can of Oats
|icon_name=Bowl of Oatmeal
|alternate_link=Can of Oats
|model2=BowlRamenRotten_Model.png
|icon2=Oatmeal.png
|icon_name2=Bowl of Oatmeal (Rotten)
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.8
|weight=0.8
|days_fresh=1
|days_fresh=1
|days_rotten=1
|days_rotten=2
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-8
|hunger_change=-8
Line 19: Line 21:
|carbohydrates=81
|carbohydrates=81
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Oatmeal
|item_id=Base.Oatmeal
}}'''Bowl of oatmeal''' is a [[Food#Perishable|perishable]] food [[item]].  
}}
A '''bowl of oatmeal''' is a perishable [[food]] [[Items|item]].


==Usage==
==Usage==
===Consumable properties===
Bowl of oatmeal can be eaten, providing the player with some positive and negative effects, however these will become negative the longer it's left to perish. Consuming after being cooked will remove the unhappiness.


===Consumable properties===
''Note that the nutrition values depends on what ingredients are added. The figures below are based on no ingredients added.''
Bowl of oatmeal can be eaten, providing the player with some positive and negative effects, however these will become negative the longer it's left to perish. Consuming after being cooked will remove the unhappiness.<br>
{{Consumables
''Note that the nutrition values depends on what ingredients is added. The figures below are based on no ingredients added.''
{{Consumables2
|image = Oatmeal.png
|image = Oatmeal.png
|hunger = -8
|hunger = -8
Line 61: Line 64:


===Obtaining===
===Obtaining===
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting cooking|113|ing=3}}
|bowl_of_oatmeal
|}
}}
 
===What it can make===
*Bowl of oatmeal can be added with [[Recipe Ingredients#Sandwich & Burger Ingredients|ingredients]].
{{Crafting header|type=food|ing=2}}
{{Crafting cooking|326|ing=2}}
|}
 
==Gallery==
<gallery>
File:BowlRamen Model.png|Model for: [[File:Oatmeal.png]]
File:BowlRamenRotten Model.png|Model for: [[File:Oatmeal.png]] (Rotten)
</gallery>


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
    item Oatmeal
  | line = true
  | start = 5076
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Oatmeal
{
{
DisplayName = Oatmeal,
DisplayName = Oatmeal,
Line 105: Line 102:
Tags = AlreadyCooked;HideCooked,
Tags = AlreadyCooked;HideCooked,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 112: Line 110:
*[[Bowl of Cereal]]
*[[Bowl of Cereal]]


{{Navbox food}}
{{Navbox items|prepared_food}}
 
 
[[Category:Perishable food]]

Latest revision as of 06:46, 14 April 2024

Project ZomboidItemsFoodPrepared foodBowl of Oatmeal
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Bowl of Oatmeal
BowlRamen Model.png
BowlRamenRotten Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Days fresh
1 days
Days until rotten
2 days
Nutrition
HungerMoodle Icon Hungry.png
-8
CaloriesCalories
300
CarbohydratesCarbohydrates
81
ProteinsProteins
15
FatFat
9
Technical
Item ID
Base.Oatmeal

A bowl of oatmeal is a perishable food item.

Usage

Consumable properties

Bowl of oatmeal can be eaten, providing the player with some positive and negative effects, however these will become negative the longer it's left to perish. Consuming after being cooked will remove the unhappiness.

Note that the nutrition values depends on what ingredients are added. The figures below are based on no ingredients added.

Fresh Stale Rotten

Oatmeal.png
Hunger: -8


Oatmeal.png
Hunger: -6
Boredom: +10
Unhappiness: +10

Oatmeal.png
Hunger: -3
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Obtaining

Product Ingredients Tools Requirements Workstation XP
Oatmeal.png
Bowl of Oatmeal
Bowl.png Bowl ×1
OatsRaw.png Can of Oats ×10 unit(s)
WaterDrop.png Water (Hot) ×1 unit(s)
none none none 0.75 Cooking

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 Oatmeal
	{
		DisplayName = Oatmeal,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		GoodHot = true,
		IsCookable = TRUE,
		MinutesToCook = 0,
		MinutesToBurn = 30,
		Icon = Oatmeal,
		EatType = 2hand,
		ReplaceOnUse = Bowl,
		DaysFresh = 1,
		DaysTotallyRotten = 2,
		HungerChange = -8,
		Calories = 300,
		Carbohydrates = 81,
		Lipids = 9,
		Proteins = 15,
		StaticModel = Bowl,
		WorldStaticModel = BowlRamen_Ground,
		Tags = AlreadyCooked;HideCooked,
	}

See also