Instant Popcorn: Difference between revisions

From PZwiki
m (Automatically add empty line after navbox)
m (Updated distribution table)
Line 60: Line 60:
! 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  
| 8
|8
|-
|-
|[[overhead]]
|[[overhead]]  
|4
|4  
|8
|8
|-
|-
| generalstore
|generalstore  
| [[crate]]
|[[crate]]  
| 4
|4  
| 1
|1
|-
|-
| grocerystorage
|grocerystorage  
| [[crate]]
|[[crate]]  
| 4
|4  
| 1
|1
|-
|-
| kitchen
|kitchen  
| [[counter]]
|[[counter]]  
| 4
|4  
| 8
|8
|-
|-
| rowspan="5"|theatrekitchen
|rowspan="5"|theatrekitchen  
| [[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
|}
|}

Revision as of 08:49, 20 March 2024

Project ZomboidItemsFoodGrainsInstant Popcorn
Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Instant Popcorn
InstantPopcorn Model.png
Instant Popcorn (Cooked)
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-10
ThirstMoodle Icon Thirsty.png
+10
CaloriesCalories
120
CarbohydratesCarbohydrates
20.41
ProteinsProteins
3.57
FatFat
2.69
Cooking
Time until cooked
5 minutes
Time until burned
5 minutes
Technical
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. It is advisable to cook in a microwave, where you can control the cooking time to the minute.

Uncooked Cooked Burned

Popcorn.png
Hunger: -10


PopcornCooked.png
Hunger: -13

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

Distribution

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

Containers
Building/Room Container Rolls Chance
breakroom counter 4 8
overhead 4 8
generalstore crate 4 1
grocerystorage crate 4 1
kitchen counter 4 8
theatrekitchen crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5

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

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.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