Pancakes: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: Codebox Update)
Line 63: Line 63:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.78.16}}
| {{CodeSnip
<pre>
  | lang = java
  | line = true
  | start =
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Pancakes
item Pancakes
{
{
DisplayName = Pancakes,
  DisplayName           = Pancakes,
DisplayCategory = Food,
  DisplayCategory       = Food,
Type = Food,
  Type                   = Food,
Weight = 0.3,
  Weight                 = 0.3,
Icon = Pancakes,
  Icon                   = Pancakes,
IsCookable = TRUE,
  IsCookable             = TRUE,
MinutesToCook = 0,
  MinutesToCook         = 0,
MinutesToBurn = 20,
  MinutesToBurn         = 20,
DaysFresh = 3,
  DaysFresh             = 3,
DaysTotallyRotten = 5,
  DaysTotallyRotten     = 5,
HungerChange = -16,
  HungerChange           = -16,
UnhappyChange = -10,
  UnhappyChange         = -10,
Calories = 210,
  Calories               = 210,
Carbohydrates = 42,
  Carbohydrates         = 42,
Lipids = 2,
  Lipids                 = 2,
Proteins = 6,
  Proteins               = 6,
WorldStaticModel = Pancakes,
  WorldStaticModel       = Pancakes,
Tags = AlreadyCooked;HideCooked,
  Tags                   = AlreadyCooked;HideCooked,
}
}
</pre>
  }}
}}


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

Revision as of 14:02, 31 January 2024

Template:Header/sandbox2

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Pancakes
Pancakes Model.png
Pancakes (fruit) Recipe_Ingredients#Pancakes_Ingredients
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-16
CaloriesCalories
210
CarbohydratesCarbohydrates
42
ProteinsProteins
6
FatFat
2
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Pancakes
Base.PancakesCraft
Base.PancakesRecipe
Which is better: Pancakes or Waffles?

Pancakes are a perishable food item.

Usage

Consumable properties

Pancakes can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.

Fresh Stale Rotten

Pancakes.png
Hunger: -16

Unhappiness: -10

Pancakes.png
Hunger: -12
Boredom: +10

Pancakes.png
Hunger: -7
Boredom: +20
Unhappiness: +10
Dangerous, will cause sickness.

Crafting

Cooking

The player can create uncooked pancakes then cook them in an oven to yield fresh pancakes. Cooked pancakes can also have condiments/spices added to them, such as maple syrup, butter, margarine, marmalade, and fruit jam.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
Pancakes
Pancakes (Uncooked)
0.75 Cooking none Bowl.png
Empty Bowl
(keep)

(keep)
PancakeMix.png
Pancake Mix
(1 unit)

(consumed)
WaterDrop.png
Water
(2 units)

(consumed)
Pancakes (Cooked)
Pancakes (Cooked)
2.5 Cooking none Heat source.gif
Heat source
(Cooked: 10 mins)
Pancakes (Uncooked)
Pancakes (Uncooked)
(consumed)


Pancakes
Pancakes
0.75 Cooking none Pancakes.png
Pancakes
(Base item)
Pancakes Ingredients
Pancakes Ingredients (1−3)
(consumed)


Distribution

Pancakes can be found in refrigerators and bakery display cases and counters.

Gallery

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Pancakes
{
  DisplayName            = Pancakes,
  DisplayCategory        = Food,
  Type                   = Food,
  Weight                 = 0.3,
  Icon                   = Pancakes,
  IsCookable             = TRUE,
  MinutesToCook          = 0,
  MinutesToBurn          = 20,
  DaysFresh              = 3,
  DaysTotallyRotten      = 5,
  HungerChange           = -16,
  UnhappyChange          = -10,
  Calories               = 210,
  Carbohydrates          = 42,
  Lipids                 = 2,
  Proteins               = 6,
  WorldStaticModel       = Pancakes,
  Tags                   = AlreadyCooked;HideCooked,
}

See also