Pancake Mix: Difference between revisions

From PZwiki
m (→‎See also: Update link - avoid redirect)
(→‎Code: CodeBox update)
Line 30: Line 30:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.73}}
| {{CodeSnip
<pre>
  | lang = java
item PancakeMix
  | line = false
    {
  | source = newitems.txt
        Type = Drainable,
  | retrieved = true
        DisplayCategory         = Cooking,
  | version = 41
         DisplayName = Pancake Mix,
  | incver = 73
        Icon = PancakeMix,
  | code =
        Weight = 0.1,
item PancakeMix
        UseWhileEquipped = FALSE,
{
        UseDelta         = 0.25,
    Type               = Drainable,
        WorldStaticModel       = PancakeMix_Ground,
    DisplayCategory     = Cooking,
    },
    DisplayName         = Pancake Mix,
</pre>
    Icon               = PancakeMix,
    Weight             = 0.1,
    UseWhileEquipped   = FALSE,
    UseDelta           = 0.25,
    WorldStaticModel   = PancakeMix_Ground,
}
  }}
}}


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

Revision as of 08:57, 31 January 2024

Template:Header/sandbox2

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.
Pancake Mix
Pancake Mix
PancakeMix.png
General
Category Cooking
Encumbrance
Heavy Load
0.1
Capacity 4 units
Technical details
item ID Base.PancakeMix

Pancake mix is a non-perishable item used in cooking.

Usage

Pancake mix can be used to make pancakes.

Crafting

Main article: Cooking

What it can make

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)

Distribution

Pancake mix can be found in kitchen counters.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.73
item PancakeMix
{
    Type                = Drainable,
    DisplayCategory     = Cooking,
    DisplayName         = Pancake Mix,
    Icon                = PancakeMix,
    Weight              = 0.1,
    UseWhileEquipped    = FALSE,
    UseDelta            = 0.25,
    WorldStaticModel    = PancakeMix_Ground,
}

See also