Instant Popcorn: Difference between revisions

From PZwiki
mNo edit summary
Line 1: Line 1:
{{languages|Instant_Popcorn}}
{{languages|Instant_Popcorn}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=14}}{{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
Line 11: Line 11:
|category=Food
|category=Food
|weight=0.3
|weight=0.3
|packaged=True
|packaged=Yes
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-10
|hunger_change=-10
Line 21: Line 21:
<!--COOKING-->
<!--COOKING-->
|cook_minutes=5
|cook_minutes=5
|burn_minutes=10
|burn_minutes=5
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Popcorn
|class_name=Base.Popcorn
Line 53: Line 53:
==Distribution==
==Distribution==
Instant popcorn is often found in [[Containers#Counter|kitchen counters]] and movie theaters.
Instant popcorn is often found in [[Containers#Counter|kitchen counters]] and movie theaters.
==Gallery==
<gallery>
File:InstantPopcorn Model.png|Model for: [[File:Popcorn.png|32px]]
</gallery>


== Code ==
== Code ==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=14}}
{{Retrieved|version=41|incver=73}}
<pre> item Popcorn
<pre> item Popcorn
HungerChange = -10,
{
Weight = 0.3,
DisplayName = Instant Popcorn,
Type = Food,
DisplayCategory = Food,
IsCookable = TRUE,
Type = Food,
MinutesToBurn = 10,
Weight = 0.3,
ThirstChange = 10,
Icon = Popcorn,
DisplayName = Instant Popcorn,
CantBeFrozen = TRUE,
Icon = Popcorn,
IsCookable = TRUE,
MinutesToCook = 5,
Packaged = TRUE,
        Carbohydrates = 20.41,
MinutesToCook = 5,
        Proteins = 3.57,
MinutesToBurn = 10,
        Lipids = 2.69,
HungerChange = -10,
        Calories = 120,
ThirstChange = 10,
        Packaged = TRUE,
Calories = 120,
        CantBeFrozen = TRUE,</pre>
Carbohydrates = 20.41,
Lipids = 2.69,
Proteins = 3.57,
WorldStaticModel = Popcorn,
}</pre>


==See also==
==See also==
Line 78: Line 87:
*[[TV Dinner]]
*[[TV Dinner]]


{{Navbox/Consumables}}
{{Navbox food}}

Revision as of 20:23, 5 October 2022

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