Instant Popcorn: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Instant_Popcorn}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
|display_name=Instant Popcorn
|display_name=Instant Popcorn
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Popcorn_120px.png
|image=Popcorn.png
|alternate_image=PopcornCooked.png
|alternate_image=PopcornCooked.png
|alternate_name=Instant Popcorn (Cooked)
|alternate_name=Instant Popcorn (Cooked)
Line 27: Line 26:


==Usage==
==Usage==
===Consumable properties===
===Consumable properties===
Popcorn cooks in 5 minutes, and will burn if left in a heat source for more than 10 minutes. Instant popcorn can be eaten raw or consumed after cooking, which will reduce more hunger.
Popcorn cooks in 5 minutes, and will burn if left in a heat source for more than 10 minutes. Instant popcorn can be eaten raw or consumed after cooking, which will reduce more hunger.
Line 59: Line 59:
</gallery>
</gallery>


== Code ==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
<pre> item Popcorn
<pre>
item Popcorn
{
{
DisplayName = Instant Popcorn,
DisplayName = Instant Popcorn,
Line 81: Line 82:
Proteins = 3.57,
Proteins = 3.57,
WorldStaticModel = Popcorn,
WorldStaticModel = Popcorn,
}</pre>
}
</pre>


==See also==
==See also==

Revision as of 01:16, 26 February 2023

Instant Popcorn
Instant Popcorn
Instant Popcorn (Cooked)
General
Category Food
Encumbrance
Heavy Load
0.3
Packaged Yes
Nutrition
Hunger
Hunger
-10
Thirst
Thirst
+10
Calories
Calories
120
Carbohydrates
Carbohydrates
20.41
Proteins
Proteins
3.57
Fat
Fat
2.69
Cooking
Time until cooked 5 minutes
Time until burned 5 minutes
Technical details
Item ID Base.Popcorn

Instant popcorn is a non-perishable food item.

Usage

Consumable properties

Popcorn cooks in 5 minutes, and will burn if left in a heat source for more than 10 minutes. Instant popcorn can be eaten raw or consumed after cooking, which will reduce more hunger. Template:Consumables2

Distribution

Instant popcorn is often found in kitchen counters and movie theaters.

Gallery

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.73

	item Popcorn
	{
		DisplayName = Instant Popcorn,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Popcorn,
		CantBeFrozen = TRUE,
		IsCookable = TRUE,
		Packaged = TRUE,
		MinutesToCook = 5,
		MinutesToBurn = 10,
		HungerChange = -10,
		ThirstChange = 10,
		Calories = 120,
		Carbohydrates = 20.41,
		Lipids = 2.69,
		Proteins = 3.57,
		WorldStaticModel = Popcorn,
	}

See also